@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:wght@400;600&display=swap');

:root {
  --brand: #E8481E;
  --brand-dark: #bf3a13;
  --dark: #111111;
  --dark-2: #1e1e1e;
  --text: #2c2c2c;
  --text-muted: #666666;
  --light: #f7f5f2;
  --white: #ffffff;
  --border: #e4e4e4;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

/* ── NAVBAR ─────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  gap: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.navbar-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.navbar-logo img {
  height: 44px;
  width: auto;
}

.navbar-logo span {
  font-size: .95rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: .02em;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  padding: .45rem .85rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  background: rgba(232,72,30,.06);
}

.nav-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-brand {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232,72,30,.35);
}

.btn-brand-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-brand-outline:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}

.btn-white:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

.btn-lg {
  padding: .8rem 2rem;
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  border-radius: var(--radius);
  color: var(--text);
}

.nav-toggle:hover { background: var(--light); }

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── PAGE OFFSET ─────────────────────────────────────────────────────── */
.page-body { padding-top: var(--nav-h); }

/* ── HERO (Homepage) ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  overflow: hidden;
}

.hero-img {
  overflow: hidden;
  background: #222;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
  opacity: .9;
}

.hero-img:hover img { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.38) 0%,
    rgba(0,0,0,.55) 50%,
    rgba(0,0,0,.72) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--white);
}

.hero-tagline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  max-width: 700px;
}

.hero-body {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  max-width: 680px;
  line-height: 1.7;
  opacity: .93;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}

/* ── ABOUT SECTION ───────────────────────────────────────────────────── */
.about-section {
  background: var(--white);
  padding: 5rem 2.5rem;
}

.about-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: center;
}

.about-logo img {
  width: 160px;
  height: auto;
}

.about-body p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
}

/* ── STATS / BECAUSE OF YOU ──────────────────────────────────────────── */
.stats-section {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 2.5rem;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.stats-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .6rem;
}

.stats-heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  border-left: 3px solid var(--brand);
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: .35rem;
}

.stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  line-height: 1.4;
}

/* ── SECTION HEADERS ─────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .5rem;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
}

/* ── PROGRAMS GRID ───────────────────────────────────────────────────── */
.programs-section {
  padding: 5rem 2.5rem;
  background: var(--white);
}

.programs-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.program-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.program-card-img {
  height: 200px;
  overflow: hidden;
  background: #ddd;
  position: relative;
}

.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.program-card:hover .program-card-img img { transform: scale(1.04); }

.program-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
  line-height: 1.35;
}

.program-card-text {
  font-size: .9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--brand);
  transition: gap var(--transition);
}

.link-arrow:hover { gap: .7rem; }

.link-arrow::after { content: "→"; }

/* ── NEWS SECTION ────────────────────────────────────────────────────── */
.news-section {
  padding: 5rem 2.5rem;
  background: var(--light);
}

.news-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.news-card-img {
  height: 220px;
  overflow: hidden;
  background: #ddd;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.news-card:hover .news-card-img img { transform: scale(1.04); }

.news-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.news-card-date {
  font-size: .8rem;
  color: var(--text-muted);
}

.news-card-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(232,72,30,.1);
  color: var(--brand);
  padding: .2rem .6rem;
  border-radius: 100px;
}

.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: .65rem;
  flex: 1;
}

.news-card-excerpt {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── CTA SECTION ─────────────────────────────────────────────────────── */
.cta-section {
  background: var(--brand);
  padding: 5rem 2.5rem;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: .75rem;
}

.cta-section p {
  font-size: 1rem;
  opacity: .88;
  margin-bottom: 2rem;
}

/* ── PAGE HERO (Inner pages) ─────────────────────────────────────────── */
.page-hero {
  height: 340px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2.5rem 2.5rem;
  max-width: 900px;
  color: var(--white);
}

.page-hero-content h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: .5rem;
}

.page-hero-content p {
  font-size: 1rem;
  opacity: .88;
  max-width: 600px;
  line-height: 1.6;
}

/* ── CONTENT SECTIONS ────────────────────────────────────────────────── */
.content-section {
  padding: 4.5rem 2.5rem;
}

.content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.content-section.bg-light { background: var(--light); }

.content-section h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.content-section p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-section p:last-child { margin-bottom: 0; }

/* ── PROGRAM STATS ROW ───────────────────────────────────────────────── */
.prog-stats {
  background: var(--dark);
  padding: 3.5rem 2.5rem;
  color: var(--white);
}

.prog-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.prog-stat-item {
  padding: 1rem;
}

.prog-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: .35rem;
}

.prog-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}

/* ── IMAGE GALLERY ───────────────────────────────────────────────────── */
.image-gallery {
  padding: 3rem 2.5rem;
}

.image-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  background: #ddd;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-img:hover img { transform: scale(1.04); }

/* ── HIGHLIGHT BOX ───────────────────────────────────────────────────── */
.highlight-box {
  background: rgba(232,72,30,.06);
  border-left: 4px solid var(--brand);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.highlight-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: .5rem;
}

.highlight-box p {
  font-size: .95rem;
  color: var(--text);
  margin: 0;
}

/* ── NEWS FULL PAGE ──────────────────────────────────────────────────── */
.news-full-section {
  padding: 4rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.news-article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.news-article-img {
  height: 320px;
  overflow: hidden;
  background: #ddd;
}

.news-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-content {
  padding: 2.5rem;
}

.news-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news-article-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.news-article-body {
  font-size: .98rem;
  color: var(--text);
  line-height: 1.85;
}

/* ── CONTACT PAGE ────────────────────────────────────────────────────── */
.contact-section {
  padding: 5rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,72,30,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--brand);
}

.contact-card-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .6rem;
}

.contact-card-body {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
}

.contact-card-body a {
  color: var(--brand);
  transition: opacity var(--transition);
}

.contact-card-body a:hover { opacity: .75; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.75);
  padding: 4rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  opacity: .9;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--brand); }

.footer-contact-item {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .5rem;
  line-height: 1.55;
}

.footer-contact-item strong {
  color: rgba(255,255,255,.85);
  display: block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ── PROGRAMS OVERVIEW PAGE ──────────────────────────────────────────── */
.programs-page-section {
  padding: 5rem 2.5rem;
  background: var(--white);
}

.programs-page-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.75rem;
}

/* ── BREADCRUMB ──────────────────────────────────────────────────────── */
.breadcrumb {
  padding: 1rem 2.5rem;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--brand); }
.breadcrumb span { margin: 0 .4rem; }

/* ── DIVIDER ─────────────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── UTIL ────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar { padding: 0 1.25rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    gap: .15rem;
    align-items: stretch;
    z-index: 800;
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: .65rem 1rem; }

  .nav-toggle { display: flex; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-logo { display: flex; justify-content: center; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .page-hero { height: 280px; }
  .page-hero-content { padding: 0 1.25rem 2rem; }

  .hero {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  .hero { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
  .hero-tagline { font-size: 1.5rem; }
  .hero-body { font-size: .9rem; }

  .programs-section,
  .news-section,
  .stats-section,
  .about-section,
  .cta-section,
  .content-section,
  .contact-section { padding: 3rem 1.25rem; }

  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .breadcrumb { padding: .75rem 1.25rem; }

  .news-article-content { padding: 1.5rem; }

  .page-hero { height: 240px; }
}

/* ── GODPARENT PAGE ──────────────────────────────────────────────────── */
.godparent-logo-img {
  width: 140px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.highlight-box-mt { margin-top: 2rem; }

.care-fund-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

/* ── NEWS PAGE ───────────────────────────────────────────────────────── */
.news-articles-section {
  padding: 4rem 2.5rem;
  background: var(--light);
}

.news-articles-section .news-full-section { padding: 0; }

.news-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.news-filter-tab {
  padding: .45rem 1.1rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}

.news-filter-tab:hover {
  background: var(--light);
  color: var(--dark);
  border-color: #bbb;
}

.news-filter-tab-active {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.news-filter-tab-active:hover {
  background: var(--brand-dark, var(--brand));
  color: var(--white);
}

.news-article-body a { color: var(--brand); }

/* ── CONTACT PAGE ────────────────────────────────────────────────────── */
.contact-details-section {
  padding: 5rem 2.5rem;
  background: var(--light);
}

.contact-details-section .contact-section { padding: 0; }

.contact-useful-links { margin-top: 3rem; }

.contact-useful-links h2 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.contact-useful-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── ABOUT PAGE ──────────────────────────────────────────────────────── */
.mt-section { margin-top: 2.5rem; }

.about-board-subheading {
  margin-top: 2.5rem;
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
}

.about-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.about-board-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.about-board-role {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brand);
  margin-bottom: .35rem;
}

.about-board-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.about-reg-table-wrap {
  margin-top: 2rem;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.about-reg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.about-reg-table th,
.about-reg-table td {
  padding: .9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.about-reg-table tr:last-child th,
.about-reg-table tr:last-child td { border-bottom: none; }

.about-reg-table th {
  width: 36%;
  font-weight: 600;
  color: var(--dark);
  background: var(--light);
  white-space: nowrap;
}

.about-reg-table td { color: var(--text); }

.about-reg-note {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: .9rem;
}

.about-reg-note a {
  color: var(--brand);
  text-decoration: underline;
}

/* ── DONATE PAGE ─────────────────────────────────────────────────────── */
.donate-intro-section {
  padding: 4rem 2.5rem 2rem;
  background: var(--white);
  text-align: center;
}

.donate-intro-inner {
  max-width: 760px;
  margin: 0 auto;
}

.donate-intro-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1rem;
}

.donate-methods-section {
  padding: 2rem 2.5rem 5rem;
  background: var(--light);
}

.donate-methods-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.pay-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pay-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pay-card--wide {
  grid-column: 1 / -1;
}

.pay-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.pay-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.pay-card-icon--gcash   { background: #007DFE; }
.pay-card-icon--maya    { background: #5BC33B; }
.pay-card-icon--palawan { background: #E8481E; }
.pay-card-icon--paypal  { background: #003087; }
.pay-card-icon--bank    { background: var(--dark); }

.pay-card-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem;
}

.pay-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.pay-card-body {
  padding: 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pay-card-detail {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.pay-card-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .75rem 2rem;
}

.pay-card-detail-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pay-card-detail-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}

.pay-placeholder {
  color: var(--brand);
  font-style: italic;
  font-weight: 500;
}

.pay-card-qr {
  margin: .25rem 0;
}

.pay-card-qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  color: var(--text-muted);
  background: var(--light);
  text-align: center;
}

.pay-card-qr-placeholder p {
  font-size: .8rem;
  margin: 0;
}

.pay-steps {
  list-style: none;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  padding: 0;
}

.pay-steps li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.55;
}

.pay-steps li::before {
  content: counter(step-counter);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(232,72,30,.1);
  color: var(--brand);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}

/* ── DONATE WHAT'S NEXT ──────────────────────────────────────────────── */
.donate-next-section {
  padding: 5rem 2.5rem;
  background: var(--white);
}

.donate-next-inner {
  max-width: 760px;
  margin: 0 auto;
}

.donate-next-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,72,30,.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 1.5rem;
}

.donate-next-inner h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.donate-next-inner p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.donate-next-inner p a {
  color: var(--brand);
  text-decoration: underline;
}

.donate-next-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.donate-next-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.55;
}

.donate-next-list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

.donate-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .donate-intro-section,
  .donate-methods-section,
  .donate-next-section { padding-left: 1.25rem; padding-right: 1.25rem; }

  .pay-card--wide { grid-column: auto; }

  .donate-next-actions { flex-direction: column; }
  .donate-next-actions .btn { width: 100%; justify-content: center; }
}

/* ── QR CODE IMAGE ────────────────────────────────────────────────── */
.pay-qr-img {
  max-width: 160px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ── DONATE SUBMISSION SECTION ───────────────────────────────────── */
.donate-submit-section {
  padding: 5rem 2.5rem;
  background: var(--white);
}

.donate-submit-inner {
  max-width: 760px;
  margin: 0 auto;
}

.donate-submit-header {
  margin-bottom: 2.5rem;
}

.donate-submit-header h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.donate-submit-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.donate-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.donate-form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.donate-form-row {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.donate-form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
}

.donate-form-input {
  width: 100%;
  padding: .65rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.donate-form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232,72,30,.12);
}

.donate-form-textarea {
  width: 100%;
  padding: .65rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  resize: vertical;
  line-height: 1.6;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.donate-form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232,72,30,.12);
}

.donate-form-actions {
  margin-top: .5rem;
}

.donate-alt-contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .95rem;
}

.donate-alt-contact a { color: var(--brand); text-decoration: underline; }

/* ── DONATE BANNERS ──────────────────────────────────────────────── */
.donate-banner {
  padding: 1.25rem 2.5rem;
  font-size: .95rem;
  line-height: 1.6;
}

.donate-banner-success {
  background: #dcfce7;
  border-bottom: 1px solid #86efac;
  color: #166534;
}

.donate-banner-error {
  background: #fee2e2;
  border-bottom: 1px solid #fca5a5;
  color: #991b1b;
}

/* ── ADMIN PANEL ─────────────────────────────────────────────────── */
.admin-body {
  background: #f4f5f7;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

.admin-nav {
  background: var(--dark);
  color: var(--white);
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.admin-nav-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.admin-nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  flex: 1;
  flex-wrap: wrap;
}

.admin-nav-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  padding: .4rem .75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.admin-nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.admin-nav-logout {
  margin-left: auto;
  color: rgba(255,255,255,.5) !important;
}

.admin-nav-logout:hover { color: #fca5a5 !important; }

.admin-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.secretary-welcome {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  border: 1px solid #c3ddf5;
  border-radius: 10px;
  padding: 1.1rem 1.5rem;
  margin-bottom: 1.75rem;
}

.secretary-welcome-inner {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.secretary-welcome-greeting {
  font-size: .95rem;
  color: #2563a8;
  font-weight: 600;
  flex-shrink: 0;
}

.secretary-welcome-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.secretary-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  min-width: 3.5rem;
}

.secretary-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}

.secretary-stat-published {
  color: #16a34a;
}

.secretary-stat-draft {
  color: #9ca3af;
}

.secretary-stat-label {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}

.secretary-stat-divider {
  width: 1px;
  height: 2.25rem;
  background: #c3ddf5;
  flex-shrink: 0;
}

.admin-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.admin-page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.admin-page-sub {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: .35rem;
}

/* Admin stats dashboard */
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.admin-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.admin-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.admin-stat-card--alert { border-left: 4px solid var(--brand); }

.admin-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: .4rem;
}

.admin-stat-card--alert .admin-stat-value { color: var(--brand); }

.admin-stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Quick links */
.admin-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  color: var(--text-muted);
}

.admin-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.admin-quick-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.admin-quick-card:hover { border-color: var(--brand); box-shadow: var(--shadow); }

.admin-quick-card strong {
  font-size: .95rem;
  color: var(--dark);
}

.admin-quick-card span {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Admin table */
.admin-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.admin-table th {
  padding: .8rem 1.25rem;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--light);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.admin-table td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text);
}

.admin-table tr:last-child td { border-bottom: none; }

.admin-table tr:hover td { background: rgba(232,72,30,.02); }

.admin-table-title {
  font-weight: 600;
  color: var(--dark);
  max-width: 380px;
}

.admin-table-date { white-space: nowrap; color: var(--text-muted); }

.admin-table-ref { font-family: monospace; font-size: .82rem; }

.admin-table-notes {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .2rem;
  font-weight: 400;
}

.admin-table-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.admin-badge {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(232,72,30,.1);
  color: var(--brand);
}

.admin-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  transition: opacity var(--transition);
}

.admin-link:hover { opacity: .7; }

.admin-link-danger { color: #dc2626 !important; }

.admin-status {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.admin-status-ok { background: #dcfce7; color: #166534; }
.admin-status-pending { background: #fef9c3; color: #854d0e; }
.admin-status-published { background: #dcfce7; color: #166534; }
.admin-status-hidden { background: #f1f5f9; color: #64748b; }

.admin-row-unack td { background: rgba(254,249,195,.35); }
.admin-row-hidden td { opacity: .55; }

.admin-nav-role {
  font-size: .75rem;
  font-weight: 600;
  color: #94a3b8;
  padding: .25rem .6rem;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  letter-spacing: .04em;
}

/* Admin forms */
.admin-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 760px;
}

.admin-form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.admin-form-row {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.admin-form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
}

.admin-required { color: var(--brand); }

/* Segmented Member Type selector (Officer / Trustee) */
.admin-segmented {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  align-self: flex-start;
}
.admin-segmented-option {
  position: relative;
  display: flex;
  align-items: stretch;
  cursor: pointer;
}
.admin-segmented-option + .admin-segmented-option {
  border-left: 1px solid var(--border);
}
.admin-segmented-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.admin-segmented-option span {
  display: inline-block;
  padding: .55rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.admin-segmented-option input:checked + span {
  background: var(--brand);
  color: var(--white);
}
.admin-segmented-option input:focus-visible + span {
  box-shadow: inset 0 0 0 3px rgba(232, 72, 30, .25);
}

.admin-form-input {
  width: 100%;
  padding: .6rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.admin-form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232,72,30,.12);
}

.admin-form-input-sm { max-width: 140px; }

.admin-form-textarea {
  width: 100%;
  padding: .6rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  resize: vertical;
  line-height: 1.6;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.admin-form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232,72,30,.12);
}

.admin-form-hint {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .2rem;
}

.admin-form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.admin-img-preview {
  max-width: 200px;
  border-radius: var(--radius);
  margin-top: .5rem;
  border: 1px solid var(--border);
}

.admin-upload-progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.admin-upload-progress-bar {
  height: 100%;
  background: var(--brand);
  border-radius: 3px;
  transition: width .1s linear;
}

.admin-img-preview-sm { max-width: 80px; border-radius: 50%; }

/* Admin payment-methods form */
.admin-pm-form { max-width: 900px; display: flex; flex-direction: column; gap: 1.5rem; }

.admin-pm-card { max-width: none; }

.admin-pm-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

/* Admin alerts */
.admin-alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.admin-alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.admin-alert-success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }

/* Admin login */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #f4f5f7;
}

.admin-login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.admin-login-logo img {
  height: 56px;
  width: auto;
  margin: 0 auto 1.5rem;
}

.admin-login-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .35rem;
}

.admin-login-sub {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-align: left;
}

.admin-login-back {
  margin-top: 1.5rem;
  font-size: .82rem;
  color: var(--text-muted);
}

.admin-login-back a { color: var(--brand); }

/* Admin filter tabs */
.admin-filter-tabs {
  display: flex;
  gap: .375rem;
  margin-bottom: 1.25rem;
}

.admin-filter-tab {
  padding: .4rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}

.admin-filter-tab:hover {
  background: var(--bg);
  color: var(--text);
  border-color: var(--text-muted);
}

.admin-filter-tab-active {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.admin-filter-tab-active:hover {
  background: var(--brand-dark, var(--brand));
  color: var(--white);
  border-color: var(--brand-dark, var(--brand));
}

/* Admin empty state */
.admin-empty {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: .95rem;
}

.admin-empty a { color: var(--brand); }

/* Flash banner */
.admin-flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: .75rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: .95rem;
  font-weight: 500;
}

.admin-flash-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  color: #166534;
  padding: 0 .25rem;
  opacity: .7;
}

.admin-flash-close:hover { opacity: 1; }

.admin-flash-undo {
  background: none;
  border: 1px solid currentColor;
  border-radius: 4px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  color: #166534;
  padding: .1rem .55rem;
  vertical-align: middle;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.admin-flash-undo:hover {
  background: #166534;
  color: #fff;
}

.admin-flash-error {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
}

.admin-flash-error .admin-flash-close { color: #991b1b; }

.admin-form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}

/* About board photo */
.about-board-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: .6rem;
}

/* ── AUDIT LOG ────────────────────────────────────────────────────────── */
.audit-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.audit-filter-form {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 0;
  font-size: .9rem;
  color: var(--text-muted);
}

.audit-filter-form select,
.audit-filter-form input[type="date"] {
  padding: .35rem .7rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-size: .875rem;
  color: var(--dark);
  cursor: pointer;
}

.audit-export {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.audit-export-note {
  font-size: .78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.audit-time {
  white-space: nowrap;
  font-size: .82rem;
  color: var(--text-muted);
}

.audit-summary {
  font-size: .875rem;
  max-width: 340px;
}

.audit-summary a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.audit-summary a:hover {
  opacity: .75;
}

.audit-deleted {
  color: var(--color-muted, #888);
  font-style: italic;
  font-size: .8em;
}

.role-badge {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.role-badge--admin {
  background: #dbeafe;
  color: #1d4ed8;
}

.role-badge--secretary {
  background: #fef9c3;
  color: #a16207;
}

.action-badge {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  background: #f3f4f6;
  color: var(--text-muted);
}

.action-badge--create   { background: #dcfce7; color: #166534; }
.action-badge--edit     { background: #dbeafe; color: #1e40af; }
.action-badge--delete   { background: #fee2e2; color: #991b1b; }
.action-badge--publish  { background: #dcfce7; color: #166534; }
.action-badge--unpublish { background: #fef9c3; color: #a16207; }
.action-badge--duplicate { background: #ede9fe; color: #5b21b6; }
.action-badge--undo-duplicate,
.action-badge--undo-edit,
.action-badge--undo-delete { background: #fef3c7; color: #92400e; }

.session-warning-banner {
  display: none;
  align-items: center;
  gap: .75rem;
  background: #7c2d12;
  color: #fff;
  padding: .75rem 1.25rem;
  font-size: .9rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}
.session-warning-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
#session-warning-text {
  flex: 1;
  min-width: 0;
}
.session-warning-extend {
  background: #fff;
  color: #7c2d12;
  border: none;
  border-radius: 4px;
  padding: .35rem .85rem;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.session-warning-extend:hover { background: #fef2f2; }
.session-warning-logout {
  color: #fecaca;
  font-size: .85rem;
  text-decoration: underline;
  white-space: nowrap;
  flex-shrink: 0;
}
.session-warning-logout:hover { color: #fff; }

@media (max-width: 768px) {
  .donate-submit-section { padding: 3rem 1.25rem; }
  .donate-form-2col { grid-template-columns: 1fr; }
  .admin-main { padding: 1.5rem 1rem 3rem; }
  .admin-form-card { padding: 1.25rem; }
  .admin-form-2col { grid-template-columns: 1fr; }
  .admin-pm-form { gap: 1rem; }
  .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-nav { padding: 0 1rem; gap: 1rem; }
  .admin-nav-links a { padding: .35rem .5rem; font-size: .78rem; }
  .session-warning-banner { gap: .5rem; font-size: .82rem; }
}
