/* CO-LIB STAFF ASSOCIATION — unique design system */
:root {
  --ink: #0b1f33;
  --ink-soft: #1a3348;
  --teal: #0a6e7c;
  --teal-deep: #085662;
  --teal-glow: #14b8a6;
  --green: #2d6a4f;
  --green-light: #52b788;
  --lime-pale: #d8f3dc;
  --gold: #c9962a;
  --gold-soft: #f0dba8;
  --cream: #f6f3ec;
  --cream-dark: #ebe5d8;
  --white: #ffffff;
  --muted: #5c6b7a;
  --line: rgba(11, 31, 51, 0.1);
  --shadow-sm: 0 2px 12px rgba(11, 31, 51, 0.06);
  --shadow-md: 0 8px 32px rgba(11, 31, 51, 0.1);
  --shadow-lg: 0 20px 60px rgba(11, 31, 51, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-h: 76px;
  --img-card: 210px;
  --img-gallery: 240px;
  --img-banner: 360px;
  --img-featured: 380px;
  --img-split: 380px;
  --img-contact: 260px;
  --img-leader-h: 300px;
  --img-leader-w: 240px;
  --img-sidebar: 170px;
  --aspect-card: 16 / 10;
  --aspect-wide: 21 / 9;
  --aspect-square: 1 / 1;
  --aspect-portrait: 4 / 5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { color: var(--green); }

.container { width: min(1180px, 90vw); margin-inline: auto; }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 300;
  padding: 0.65rem 1.25rem;
  background: var(--teal-glow);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus { top: 0; }

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.site-header.scrolled {
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled::after { opacity: 1; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}

.nav-brand:hover { color: var(--ink); opacity: 0.85; }

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--teal-glow);
}

.nav-title-wrap { display: flex; flex-direction: column; line-height: 1.15; }

.nav-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-subtitle {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-deep);
  background: rgba(10, 110, 124, 0.08);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.25rem !important;
  background: var(--ink) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--teal-deep) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10, 110, 124, 0.35);
}
.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 8px 28px rgba(10, 110, 124, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.25); color: var(--white); }

.btn-full { width: 100%; }

/* ── Homepage Hero (unique layout) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(20, 184, 166, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(45, 106, 79, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, var(--cream) 0%, #eef8f5 45%, var(--cream-dark) 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px dashed rgba(10, 110, 124, 0.15);
  top: 10%;
  right: -8%;
  animation: spin-slow 80s linear infinite;
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero-text { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  background: rgba(10, 110, 124, 0.08);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(10, 110, 124, 0.15);
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-glow);
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-ring {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--teal-glow), var(--green-light), var(--gold-soft), var(--teal-glow));
  opacity: 0.35;
  filter: blur(1px);
}

.hero-logo-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 78%;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
}

.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  border: 1px solid var(--line);
}

.hero-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--teal-deep);
  line-height: 1.2;
}

.hero-float span { color: var(--muted); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.hero-float--1 { top: 8%; left: -5%; }
.hero-float--2 { bottom: 18%; right: -8%; }
.hero-float--3 { bottom: 5%; left: 0; }

.hero-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 0 3rem;
}

.hero-bar-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-bar-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--lime-pale), rgba(20, 184, 166, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-bar-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-bar-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

/* ── Values strip (homepage) ── */
.values-strip {
  background: var(--ink);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}

.values-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-cell {
  padding: 2.75rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: background 0.3s;
}
.value-cell:last-child { border-right: none; }
.value-cell:hover { background: rgba(20, 184, 166, 0.08); }

.value-cell-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--teal-glow);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.value-cell h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.value-cell p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

/* ── Sections ── */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--white); }
.section-navy {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-deep) 100%);
  color: var(--white);
}

.section-header { margin-bottom: 3rem; max-width: 640px; }
.section-header.center { text-align: center; margin-inline: auto; }

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--teal-glow);
}

.section-label-light { color: var(--lime-pale); border-color: var(--lime-pale); }

.section-header h2,
.mission-text h2,
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.section-navy .section-header h2,
.section-navy .mission-text h2 { color: var(--white); }

.section-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.section-navy .section-intro,
.section-navy .mission-text p { color: rgba(255, 255, 255, 0.78); }

.section-cta { text-align: center; margin-top: 3rem; }

/* ── Bento grid (homepage teasers) ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.25rem;
}

.bento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bento-card--wide { grid-column: span 7; }
.bento-card--tall { grid-column: span 5; grid-row: span 2; }
.bento-card--half { grid-column: span 6; }

.bento-card .card-image {
  height: var(--img-card);
  overflow: hidden;
  flex-shrink: 0;
}
.bento-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bento-card:hover .card-image img { transform: scale(1.06); }

.bento-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bento-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.bento-body p {
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.65;
}

/* ── Legacy grids (inner pages) ── */
.teaser-grid,
.services-grid,
.pillars-grid,
.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.teaser-card,
.service-card,
.pillar-card,
.affiliate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.teaser-card { padding: 0; }
.service-card { padding: 0 0 2rem; }
.pillar-card { padding: 0 0 2rem; }
.affiliate-card { padding: 0 0 2rem; color: inherit; }

.teaser-card:hover,
.service-card:hover,
.pillar-card:hover,
.affiliate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image,
.pillar-image,
.affiliate-image,
.blog-card-image {
  height: var(--img-card);
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
  isolation: isolate;
}
.gallery-cell,
.impact-section__frame {
  position: relative;
}
.card-image img,
.pillar-image img,
.affiliate-image img,
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s ease;
}
.teaser-card:hover .card-image img,
.service-card:hover .card-image img,
.pillar-card:hover .pillar-image img,
.affiliate-card:hover .affiliate-image img,
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.teaser-card .bento-body,
.teaser-card h3,
.teaser-card p { padding: 0 1.75rem; }
.teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.teaser-card p { font-size: 0.9rem; color: var(--muted); padding-bottom: 0.5rem; flex: 1; }

.service-card .card-image { margin-bottom: 0; }
.service-card { padding-bottom: 2rem; }
.service-card h3,
.pillar-card h3,
.affiliate-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 0 1.75rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--ink);
}
.service-card p,
.pillar-card p,
.affiliate-card p {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0 1.75rem;
  flex: 1;
  line-height: 1.65;
}

.service-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--lime-pale);
  padding: 0 1.75rem;
  line-height: 1;
  margin-top: 1.25rem;
}

.read-more,
.affiliate-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  padding: 1rem 1.75rem 0;
  margin-top: auto;
}
.read-more:hover,
.affiliate-link:hover { color: var(--green); }

.affiliate-badge {
  display: inline-block;
  margin: 1.25rem 1.75rem 0;
  padding: 0.3rem 0.75rem;
  background: var(--lime-pale);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
}

/* ── Impact & gallery ── */
.impact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.impact-section__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: var(--img-split);
  box-shadow: var(--shadow-lg);
  background: var(--cream-dark);
  position: relative;
}
.impact-section__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 1;
}
.impact-section__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.gallery-cell {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: var(--img-gallery);
  box-shadow: var(--shadow-sm);
  background: var(--cream-dark);
  position: relative;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s ease;
}
.gallery-cell:hover img { transform: scale(1.03); }

/* ── Mission layout ── */
.mission-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.mission-text p { margin: 0.75rem 0 1.5rem; max-width: 560px; }

.mission-stats { display: flex; flex-direction: column; gap: 1rem; }

.stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  text-align: center;
  min-width: 160px;
  backdrop-filter: blur(4px);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-pale);
  margin-top: 0.2rem;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.values-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--teal-glow);
}
.values-list strong {
  display: block;
  color: var(--lime-pale);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.values-list span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.blog-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.blog-card h2 a { color: inherit; }
.blog-card h2 a:hover { color: var(--teal); }

.blog-card p {
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.blog-grid--list { grid-template-columns: 1fr; max-width: 780px; }

.blog-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
}
.tag-list a {
  padding: 0.35rem 0.8rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}
.tag-list a:hover {
  background: var(--lime-pale);
  border-color: var(--green-light);
  color: var(--green);
}

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(120deg, var(--green) 0%, var(--teal) 50%, var(--teal-deep) 100%);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -200px;
  right: -100px;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Inner page hero ── */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--lime-pale) 0%, transparent 70%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.page-hero.has-image {
  background: var(--ink);
  color: var(--white);
  padding-bottom: 4rem;
}
.page-hero.has-image::before { display: none; }

.page-hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(11, 31, 51, 0.92) 0%, rgba(10, 110, 124, 0.75) 100%),
    var(--hero-img, url("assets/images/credit-union-staff.jpg")) center / cover no-repeat;
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 0.85rem;
}

.page-hero.has-image h1 { color: var(--white); }

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
}
.page-hero.has-image .page-hero-desc { color: rgba(255, 255, 255, 0.85); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
}
.page-hero.has-image .breadcrumb { color: rgba(255, 255, 255, 0.65); }
.breadcrumb a { color: var(--teal-glow); font-weight: 600; }
.page-hero:not(.has-image) .breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { opacity: 0.85; }

.page-content { padding: 4rem 0; background: var(--cream); }
.page-content-narrow { max-width: 760px; margin-inline: auto; }

/* ── Prose & layout ── */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ink);
  margin: 2rem 0 0.85rem;
  letter-spacing: -0.02em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; color: var(--teal-deep); margin: 1.5rem 0 0.65rem; }
.prose p { font-size: 0.975rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; color: var(--muted); font-size: 0.975rem; line-height: 1.75; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--ink); }
.prose a { font-weight: 600; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--lime-pale);
}
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.sidebar-links a { font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.sidebar-links a:hover { color: var(--teal); }

/* ── Timeline ── */
.timeline { margin: 2rem 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-left: 2px solid var(--teal-glow);
  margin-left: 45px;
  padding-left: 2rem;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
  border: 3px solid var(--cream);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal);
  text-align: right;
  margin-left: -135px;
}
.timeline-body h3 { font-size: 1rem; color: var(--ink); margin-bottom: 0.4rem; }
.timeline-body p { font-size: 0.9rem; color: var(--muted); }

/* ── Trust bar ── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 2rem 0;
  border: 1px solid var(--line);
}
.trust-item {
  background: var(--white);
  padding: 1.35rem;
  text-align: center;
}
.trust-item strong { display: block; font-family: var(--font-display); color: var(--ink); margin-bottom: 0.2rem; }
.trust-item span { font-size: 0.75rem; color: var(--muted); }

/* ── Leader ── */
.leader-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.leader-photo {
  flex-shrink: 0;
  width: var(--img-leader-w);
  height: var(--img-leader-h);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.leader-avatar {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.leader-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.leader-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}
.leader-info p { font-size: 0.925rem; color: var(--muted); line-height: 1.7; }

/* ── Compliance ── */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.compliance-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.compliance-card-wide { grid-column: 1 / -1; }
.compliance-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--lime-pale);
}
.compliance-list { display: flex; flex-direction: column; gap: 0.75rem; }
.compliance-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.compliance-list dt { font-weight: 700; color: var(--ink-soft); }
.compliance-list dd { color: var(--muted); }
.compliance-note {
  margin-top: 1.25rem;
  font-size: 0.825rem;
  color: var(--muted);
  padding: 0.85rem 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal-glow);
}
.notice-box {
  padding: 1.25rem 1.5rem;
  background: var(--lime-pale);
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 106, 79, 0.2);
}
.notice-box p { font-size: 0.875rem; color: var(--ink-soft); margin-bottom: 0.85rem; line-height: 1.65; }
.notice-box p:last-child { margin-bottom: 0; }
.notice-box strong { color: var(--green); }

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info p { color: var(--muted); margin: 0.75rem 0 1.5rem; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-details li { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.contact-details a { font-weight: 700; font-size: 1rem; word-break: break-all; }
.contact-details address,
.contact-details span { font-style: normal; color: var(--muted); font-size: 0.925rem; line-height: 1.7; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
  font-size: 0.925rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--teal-glow);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
  background: var(--white);
}
.form-note { font-size: 0.75rem; color: var(--muted); text-align: center; }
.form-success {
  font-size: 0.875rem;
  color: var(--green);
  background: var(--lime-pale);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { font-size: 0.975rem; color: var(--ink); margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── Images ── */
.img-banner {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: var(--img-banner);
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
  position: relative;
  background: var(--cream-dark);
}
.img-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.img-banner .figure-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 2.5rem 1.25rem 0.85rem;
  background: linear-gradient(transparent, rgba(11, 31, 51, 0.75));
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  font-style: normal;
  font-size: 0.78rem;
}
.img-banner[data-focus="arch"] img { object-position: center 58%; }
.img-banner[data-focus="group"] img { object-position: center 32%; }
.img-banner--flush { margin-top: 0; margin-bottom: 2.5rem; }

.contact-image,
.sidebar-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: var(--img-contact);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.contact-image img,
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-thumb { height: var(--img-sidebar); }

.seal-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: contain;
}
.img-caption {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split-media__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: var(--img-split);
  box-shadow: var(--shadow-lg);
}
.split-media__frame img { width: 100%; height: 100%; object-fit: cover; }

/* ── Blog post ── */
.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  color: var(--ink);
  line-height: 1.2;
  margin: 0.75rem 0;
  letter-spacing: -0.02em;
}
.post-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.825rem; color: var(--muted); }
.post-meta strong { color: var(--ink); }
.post-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: var(--img-featured);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}
.post-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.post-nav a { font-size: 0.875rem; font-weight: 700; max-width: 45%; }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-glow), var(--green-light), var(--gold));
}

.footer-top {
  padding: 3.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.footer-logo {
  width: 72px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.4);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.footer-motto {
  font-size: 0.78rem;
  color: var(--teal-glow);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-glow);
  margin-bottom: 1rem;
}

.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-nav a { color: rgba(255, 255, 255, 0.72); font-size: 0.85rem; }
.footer-nav a:hover { color: var(--white); }

.footer-contact address {
  font-style: normal;
  font-size: 0.825rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.footer-contact a { color: var(--teal-glow); font-size: 0.825rem; font-weight: 600; }
.footer-contact a:hover { color: var(--white); }

.footer-legal p { font-size: 0.825rem; line-height: 1.8; }
.footer-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  opacity: 0.6;
  line-height: 1.6;
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Legacy footer grid fallback */
.footer-grid.legacy {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.6rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bento-card--wide,
  .bento-card--tall,
  .bento-card--half { grid-column: span 12; grid-row: auto; }
  .blog-grid:not(.blog-grid--list) { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    align-items: stretch;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 0.75rem 1rem; }
  .nav-cta { margin-left: 0 !important; text-align: center; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-float { display: none; }
  .hero-bar { grid-template-columns: 1fr; }

  .values-strip-inner { grid-template-columns: 1fr; }
  .value-cell { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

  .impact-section,
  .split-media,
  .contact-layout,
  .two-col-layout,
  .blog-layout,
  .mission-layout { grid-template-columns: 1fr; }

  .photo-gallery { grid-template-columns: 1fr; }
  .gallery-cell:first-child { height: var(--img-gallery); margin-top: 0; }

  .compliance-grid { grid-template-columns: 1fr; }
  .compliance-list div { grid-template-columns: 1fr; }

  .leader-card { flex-direction: column; align-items: center; text-align: center; }
  .leader-photo { width: 100%; max-width: var(--img-leader-w); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-block { flex-direction: column; align-items: center; text-align: center; }
  .footer-tagline { max-width: none; }

  .timeline-item { grid-template-columns: 1fr; margin-left: 1rem; padding-left: 1.5rem; }
  .timeline-year { text-align: left; margin-left: 0; }

  .blog-grid { grid-template-columns: 1fr; }
  .post-nav { flex-direction: column; }
  .post-nav a { max-width: 100%; }

  .mission-stats { flex-direction: row; flex-wrap: wrap; }
  .stat { flex: 1; min-width: 100px; }
}

@media (max-width: 1024px) {
  .blog-grid:not(.blog-grid--list) { grid-template-columns: 1fr; }
}

/* ── Unified media system ── */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-dark);
  line-height: 0;
}

.media-frame--card { aspect-ratio: var(--aspect-card); height: auto; }
.media-frame--wide { aspect-ratio: var(--aspect-wide); }
.media-frame--banner { aspect-ratio: var(--aspect-wide); max-height: var(--img-banner); }
.media-frame--featured { aspect-ratio: var(--aspect-wide); max-height: var(--img-featured); }

.media-frame img,
.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.media-frame--card img { min-height: var(--img-card); }

.media-caption,
.figure-caption {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.55rem;
  line-height: 1.5;
  font-style: normal;
  letter-spacing: 0.01em;
}

.media-label {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  background: rgba(11, 31, 51, 0.72);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

/* Focus points — keeps faces, skylines, and desks well framed */
img[data-focus="top"],
.media-frame[data-focus="top"] img { object-position: center 18%; }
img[data-focus="face"],
.media-frame[data-focus="face"] img { object-position: center 22%; }
img[data-focus="group"],
.media-frame[data-focus="group"] img { object-position: center 32%; }
img[data-focus="desk"],
.media-frame[data-focus="desk"] img { object-position: center 42%; }
img[data-focus="arch"],
.media-frame[data-focus="arch"] img { object-position: center 58%; }
img[data-focus="books"],
.media-frame[data-focus="books"] img { object-position: center 45%; }

.card-image[data-focus="top"] img,
.gallery-cell[data-focus="top"] img,
.impact-section__frame[data-focus="top"] img,
.img-banner[data-focus] img,
.contact-image[data-focus] img,
.post-featured-image[data-focus] img,
.leader-photo[data-focus] img,
.bento-card .card-image[data-focus] img,
.blog-card-image[data-focus] img { object-position: center 18%; }
.card-image[data-focus="face"] img,
.gallery-cell[data-focus="face"] img,
.impact-section__frame[data-focus="face"] img,
.bento-card .card-image[data-focus="face"] img,
.blog-card-image[data-focus="face"] img { object-position: center 22%; }
.card-image[data-focus="group"] img,
.gallery-cell[data-focus="group"] img,
.impact-section__frame[data-focus="group"] img,
.bento-card .card-image[data-focus="group"] img,
.blog-card-image[data-focus="group"] img { object-position: center 32%; }
.card-image[data-focus="desk"] img,
.gallery-cell[data-focus="desk"] img,
.bento-card .card-image[data-focus="desk"] img { object-position: center 42%; }
.card-image[data-focus="arch"] img,
.gallery-cell[data-focus="arch"] img,
.contact-image[data-focus="arch"] img { object-position: center 58%; }
.card-image[data-focus="books"] img,
.bento-card .card-image[data-focus="books"] img { object-position: center 45%; }

.gallery-row-caption {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: -0.25rem;
}

.img-banner img { object-position: center 40%; }

/* ── Donate page ── */
.donate-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.donate-stat {
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
}
.donate-stat strong { color: var(--white); display: block; font-size: 0.95rem; }

.donate-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.donate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.donate-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.donate-card p,
.donate-card li {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.7;
}
.donate-card ul { margin: 0.75rem 0 0 1.1rem; }
.donate-card li { margin-bottom: 0.35rem; }

.donate-methods { display: grid; gap: 1rem; }

.donate-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.donate-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--lime-pale), rgba(20, 184, 166, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.donate-method h4 {
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.donate-method p { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.6; }

.donate-warning {
  background: #fff8e6;
  border: 1px solid rgba(201, 150, 42, 0.35);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.donate-warning p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.65;
}
.donate-warning strong { color: #9a6700; }

.donate-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.donate-impact-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.donate-impact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--teal-deep);
  margin-bottom: 0.25rem;
}
.donate-impact-item span { font-size: 0.78rem; color: var(--muted); }

@media (max-width: 768px) {
  .donate-layout,
  .donate-impact-grid { grid-template-columns: 1fr; }
}
