/* Family Staff Organization — Brand: Teal #13737E, Orange #E8912D */

:root {
  --teal: #13737e;
  --teal-dark: #0e5a63;
  --teal-light: #e8f4f5;
  --orange: #e8912d;
  --orange-dark: #c9781f;
  --orange-light: #fdf3e6;
  --cream: #faf8f4;
  --white: #ffffff;
  --text: #2c3338;
  --text-muted: #5c6670;
  --border: #e2e8ec;
  --shadow: 0 4px 24px rgba(19, 115, 126, 0.08);
  --shadow-lg: 0 12px 40px rgba(19, 115, 126, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --max-width: 1140px;
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--orange);
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-link:hover {
  color: inherit;
}

.logo-img {
  height: 56px;
  width: auto;
}

.logo-text {
  display: none;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
  color: var(--teal);
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--teal-light);
  color: var(--teal);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav a {
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }
}

@media (min-width: 901px) {
  .nav-toggle {
    display: none;
  }

  .logo-text {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 50%, var(--orange-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 145, 45, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-weight: 700;
  color: var(--teal);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-collage .hero-img-main {
  grid-row: 1 / 3;
  min-height: 280px;
  border-radius: var(--radius-lg);
}

.hero-logo-card {
  background: var(--white);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-card img {
  margin: 0 auto;
  max-height: 72px;
  width: auto;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* Section common */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-size: 1.15rem;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.about-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.about-content p strong {
  color: var(--text);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--teal-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
}

.info-item dt {
  font-weight: 700;
  color: var(--teal-dark);
  min-width: 140px;
  flex-shrink: 0;
}

.info-item dd {
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .about-details {
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
  }
}

/* Leadership */
.leader-card {
  text-align: center;
}

.leader-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}

.leader-card .role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.leader-card h3 {
  font-size: 1.2rem;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

/* Programs */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.program-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .program-card-img img {
  transform: scale(1.05);
}

.program-card-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  border-radius: 10px;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.program-card-body {
  padding: 1.5rem;
}

.program-card-body h3 {
  font-size: 1.05rem;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.program-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 21 / 9;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 1rem;
  background: linear-gradient(transparent, rgba(14, 90, 99, 0.88));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 9;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-image {
    aspect-ratio: 21 / 8;
    max-height: 380px;
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item-wide {
    grid-column: span 2;
  }
}

/* Meetings */
.meetings-box {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.meetings-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.meetings-box p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.meeting-dates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.meeting-date {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.meetings-note {
  background: var(--orange-light);
  color: var(--text);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  border-left: 4px solid var(--orange);
}

@media (min-width: 768px) {
  .meetings-box {
    grid-template-columns: 1fr 1fr;
  }
}

/* Donate */
.donate-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
}

.donate-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.donate-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.donate-widget {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.donate-widget-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.donate-frequency {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 1.5rem;
}

.freq-btn {
  padding: 0.5rem 1.25rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.freq-btn.active {
  background: var(--white);
  color: var(--teal-dark);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.amount-btn {
  padding: 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.amount-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.amount-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.02);
}

.amount-btn-custom {
  grid-column: span 3;
  font-size: 0.95rem;
}

.custom-amount-wrap {
  margin-bottom: 1rem;
}

.custom-amount-wrap label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

.custom-amount-field {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
}

.currency-prefix {
  padding: 0.85rem 0 0.85rem 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.custom-amount-field input {
  flex: 1;
  padding: 0.85rem 1rem 0.85rem 0.25rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  outline: none;
}

.custom-amount-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.donate-impact {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  opacity: 0.95;
}

.donate-impact strong {
  color: var(--orange-light);
}

.btn-donate-cta {
  width: 100%;
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.donate-widget-note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  opacity: 0.75;
  text-align: center;
}

.impact-tiers-title,
.donate-methods-title,
.donate-faq-title {
  font-size: 1.1rem;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.impact-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.impact-tier {
  padding: 1.25rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--orange);
}

.impact-tier-amount {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.impact-tier p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.donate-methods-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.method-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.method-tab {
  padding: 0.5rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.method-tab.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.method-panel h4 {
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.method-panel p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.donate-address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  padding: 1rem;
  background: var(--teal-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.method-tip {
  font-size: 0.85rem !important;
  font-style: italic;
  color: var(--text-muted) !important;
}

.corp-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.corp-info div {
  display: flex;
  gap: 1rem;
  padding: 0.65rem 1rem;
  background: var(--cream);
  border-radius: 8px;
}

.corp-info dt {
  font-weight: 700;
  color: var(--teal-dark);
  min-width: 100px;
}

.corp-info dd {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.donate-faq {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  font-weight: 600;
  color: var(--teal-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--orange);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.donate-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tax-notice {
  background: var(--teal-light);
  border: 1px solid rgba(19, 115, 126, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.tax-notice h3 {
  color: var(--teal-dark);
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.tax-notice p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.ein-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.ein-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.tax-notice .ein {
  font-family: "Courier New", monospace;
  font-weight: 700;
  color: var(--teal);
  font-size: 1.05rem;
  flex: 1;
}

.copy-ein-btn {
  padding: 0.35rem 0.85rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.copy-ein-btn:hover {
  background: var(--teal-dark);
}

.copy-ein-btn.copied {
  background: var(--orange);
}

.tax-fine-print {
  font-size: 0.8rem !important;
  margin-bottom: 0 !important;
}

.donate-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.donate-sidebar-card h3 {
  font-size: 1rem;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.donate-sidebar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.donate-sidebar-card-accent {
  background: var(--orange-light);
  border-color: rgba(232, 145, 45, 0.35);
}

.sidebar-email {
  font-size: 0.9rem;
  font-weight: 600;
  word-break: break-all;
}

@media (min-width: 768px) {
  .amount-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .amount-btn-custom {
    grid-column: span 1;
  }
}

@media (min-width: 992px) {
  .donate-layout {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* Transparency */
.doc-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doc-table th,
.doc-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.doc-table th {
  background: var(--teal);
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.doc-table tr:last-child td {
  border-bottom: none;
}

.doc-table td {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.doc-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.doc-status.available {
  background: #d4edda;
  color: #155724;
}

.doc-status.pending {
  background: #fff3cd;
  color: #856404;
}

.policy-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.policy-item {
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.policy-item h4 {
  color: var(--teal-dark);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.policy-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block h3 {
  font-size: 1rem;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.contact-block p,
.contact-block a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(19, 115, 126, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: #d4edda;
  color: #155724;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.form-success.show {
  display: block;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* Footer */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 64px;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-legal {
  max-width: 600px;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Blog */
.page-hero {
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.blog-filter-btn {
  padding: 0.5rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
}

.blog-featured:hover {
  transform: translateY(-4px);
}

.blog-featured-img {
  height: 280px;
  overflow: hidden;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-featured:hover .blog-featured-img img {
  transform: scale(1.04);
}

.blog-featured-body {
  padding: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card-link:hover {
  color: inherit;
}

.blog-card-img {
  height: 180px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
}

.blog-date {
  color: var(--text-muted);
}

.blog-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-tag-impact { background: var(--orange-light); color: var(--orange-dark); }
.blog-tag-volunteer { background: #e8f5e9; color: #2e7d32; }
.blog-tag-news { background: #e3f2fd; color: #1565c0; }

.blog-card h3,
.blog-featured h2 {
  font-size: 1.15rem;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-featured h2 {
  font-size: 1.5rem;
}

.blog-featured h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-featured h2 a:hover {
  color: var(--orange);
}

.blog-card p,
.blog-featured p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
}

.blog-card-link:hover .read-more {
  color: var(--teal);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.blog-preview-cta {
  text-align: center;
}

/* Blog post page */
.blog-post-hero {
  padding: calc(var(--header-height) + 2.5rem) 0 2rem;
  background: var(--cream);
}

.blog-post-hero .container {
  max-width: 760px;
}

.blog-post-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--teal-dark);
  line-height: 1.2;
  margin: 1rem 0;
}

.blog-post-cover {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 9;
}

.blog-post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.blog-post-content p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.blog-post-content h2 {
  font-size: 1.35rem;
  color: var(--teal-dark);
  margin: 2rem 0 1rem;
}

.blog-post-content ul {
  margin: 0 0 1.25rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  margin: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .blog-featured {
    grid-template-columns: 1.1fr 1fr;
  }

  .blog-featured-img {
    height: auto;
    min-height: 320px;
  }
}
