:root {
  --bg: #f4f8f4;
  --surface: #ffffff;
  --ink: #12372b;
  --ink-soft: #41685a;
  --brand: #0b6b49;
  --brand-2: #179b66;
  --dark: #0a2f23;
  --line: #d5e6de;
  --mint: #deefe5;
  --mint-strong: #c7e6d7;
  --hero-image: url("https://dinoselimovic.dk/wp-content/uploads/2025/10/portrait-dino-selimovic.webp");
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
  overflow-x: hidden;
  line-height: 1.45;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #d8efe4;
  border-bottom: 1px solid #bcdece;
  font-size: 0.8rem;
  font-weight: 500;
  color: #0e4b35;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 51;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 1rem;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-links a {
  color: #0e4b35;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.18s ease;
}

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

.site-header {
  position: fixed;
  inset: 36px 0 auto 0;
  z-index: 50;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.scrolled {
  background-color: #0f5e42;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(8, 40, 28, 0.22);
}

.scroll-progress {
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #7ae0b4, #c5f0d8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.menu a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: #fff;
}

.menu a.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.menu .nav-cta {
  background: #fff;
  color: #0f5e42;
  padding: 0.56rem 0.95rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-weight: 700;
}

.menu .nav-cta:hover,
.menu .nav-cta.active {
  color: #0f5e42;
  text-decoration: none;
  background: #edfaf4;
}

.nav-toggle {
  display: none;
  font-size: 1.4rem;
  background: none;
  color: #fff;
  border: 0;
}

/* ── HERO ENTRANCE ──────────────────────────────── */

.hero-line-1,
.hero-line-2,
.hero-line-3,
.hero-line-4 {
  opacity: 0;
  transform: translateY(24px);
}

.hero-ready .hero-line-1 { animation: heroLineIn 0.7s 0.0s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-ready .hero-line-2 { animation: heroLineIn 0.8s 0.12s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-ready .hero-line-3 { animation: heroLineIn 0.7s 0.26s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-ready .hero-line-4 { animation: heroLineIn 0.7s 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── SLOGAN EYEBROW ─────────────────────────────── */

.eyebrow mark {
  display: none;
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: clip;
  display: grid;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.55);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

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

.hero-bg {
  background: 68% 6% / cover no-repeat var(--hero-image);
  transform-origin: center center;
  animation: heroBgReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards, kenBurns 20s 1.4s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroBgReveal {
  from { opacity: 0; transform: scale(1.12) translateY(12px); }
  to   { opacity: 1; transform: scale(1.0) translateY(0); }
}

@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0px, 0px); }
  100% { transform: scale(1.07) translate(-10px, 5px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .hero-line-1, .hero-line-2, .hero-line-3, .hero-line-4 {
    opacity: 1; transform: none;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(
      to right,
      rgba(8, 44, 31, 0.97) 0%,
      rgba(8, 44, 31, 0.90) 28%,
      rgba(8, 44, 31, 0.60) 50%,
      rgba(8, 44, 31, 0.18) 72%,
      rgba(8, 44, 31, 0.06) 100%
    ),
    linear-gradient(to top, rgba(8, 44, 31, 0.72) 0%, transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 10rem;
  padding-bottom: 7rem;
  text-align: left;
}

.hero-content > * {
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.77rem;
  opacity: 1;
  display: inline-flex;
  background: rgba(222, 239, 229, 0.9);
  color: #0c3d2d;
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  font-weight: 700;
}

h1 {
  margin: 0.7rem 0 0;
  font-size: clamp(2.1rem, 4.6vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.accent-word {
  color: #cbf0dc;
  text-shadow: 0 0 24px rgba(160, 234, 198, 0.45);
  transition: opacity 0.35s ease;
}

.lead {
  margin-top: 1.2rem;
  max-width: 58ch;
  font-size: clamp(1rem, 1.95vw, 1.18rem);
  color: #e0efe8;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.28rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(12, 77, 56, 0.24);
}

.btn:hover {
  filter: brightness(1.07);
}

.btn:focus-visible,
.chip:focus-visible,
.menu a:focus-visible,
.socials a:focus-visible,
.modal-close:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--mint-strong) 82%, #ffffff);
  outline-offset: 2px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  box-shadow: none;
}

.btn-small {
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.92rem;
}

.stats {
  margin-top: 2.2rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat {
  background: rgba(250, 255, 252, 0.14);
  border: 1px solid rgba(232, 249, 241, 0.3);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 0.95rem 0.85rem;
  color: #f1faf6;
  font-size: 0.9rem;
  line-height: 1.35;
}

.stat span {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.15rem;
  color: #fff;
}

.stats-light {
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.stat-light {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  box-shadow: 0 2px 8px rgba(10, 55, 40, 0.04), 0 8px 20px rgba(10, 55, 40, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(10, 55, 40, 0.06), 0 12px 28px rgba(10, 55, 40, 0.1);
}

.stat-light span {
  color: var(--brand);
}

.live-ticker {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(222, 248, 235, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  overflow: hidden;
  width: min(760px, 100%);
}

.live-badge {
  background: #d8f4e5;
  color: #08432f;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.48rem 0.7rem;
  border-radius: 999px;
  margin-left: 0.35rem;
}

.ticker-window {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  min-height: 2.15rem;
  display: grid;
  align-items: center;
  contain: content;
}

.ticker-track {
  display: inline-block;
  padding-left: 100%;
  color: #e7f7ef;
  font-size: 0.95rem;
  animation: marquee 28s linear infinite;
}

.section {
  padding: 5rem 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
  margin-bottom: 1.65rem;
}

.section-intro .section-title {
  margin-bottom: 0;
}

.section-intro p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 62ch;
  font-size: 1.04rem;
}

.section-title {
  margin: 0 0 2rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  color: #0f4e39;
  letter-spacing: -0.02em;
}

.section-title.light {
  color: #fff;
}

.issue-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.issue-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.65rem 0.9rem 1.3rem;
  box-shadow: 0 2px 8px rgba(10, 55, 40, 0.04), 0 10px 28px rgba(10, 55, 40, 0.07);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.issue-visual {
  margin: -0.65rem -0.9rem 0;
  position: relative;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  height: 210px;
}

.issue-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 43, 30, 0.0) 40%, rgba(5, 43, 30, 0.38) 100%);
}

.issue-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.issue-card:hover .issue-visual img {
  transform: scale(1.07);
}

.issue-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: #0e4b35;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}


.issue-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 4px 12px rgba(10, 55, 40, 0.06), 0 20px 40px rgba(8, 53, 37, 0.14);
}

.issue-icon {
  width: 48px;
  margin: 1.1rem 0 0.6rem;
}

.issue-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.issue-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1rem;
}

.issue-card a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.issue-card a:hover {
  gap: 0.55rem;
}

.section-dark {
  background: linear-gradient(160deg, #0f5e42 0%, #0a4533 100%);
  color: #ebf7f0;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(116, 218, 166, 0.09) 0%, transparent 60%);
  pointer-events: none;
}

.feed-head p {
  max-width: 58ch;
  color: #d0e7dd;
}

.feed-filters {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.chip {
  border: 1px solid #7eb9a0;
  background: transparent;
  color: #e4f3ec;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}

.chip.active,
.chip:hover {
  background: #daf0e5;
  color: #0c402f;
}

.feed-layout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.feed-features {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.feed-feature,
.feed-item {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(225, 245, 236, 0.22);
  border-radius: 16px;
  backdrop-filter: blur(2px);
}

.feed-feature {
  padding: 1.6rem 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.feed-feature-bg {
  position: absolute;
  bottom: -0.5rem;
  right: 1rem;
  font-size: 11rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
}

.feed-feature.swap {
  animation: featureSwap 0.38s ease;
}

.feed-meta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.82rem;
  color: #9ecfbe;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feed-feature h3 {
  margin: 0.9rem 0 0.8rem;
  color: #fff;
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 800;
}

.feed-feature p {
  color: #cde4d9;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.2rem;
  max-width: 52ch;
}

.feed-feature .btn {
  align-self: flex-start;
  margin-top: auto;
}
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.feed-item {
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feed-item.active {
  border-color: rgba(215, 243, 231, 0.72);
  background: rgba(255, 255, 255, 0.18);
}

.feed-item h4 {
  margin: 0.3rem 0;
  color: #fff;
}

.feed-item p {
  margin: 0;
  color: #dcece5;
  font-size: 0.95rem;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
  background: #f6fbf8;
}

.about-media {
  overflow: hidden;
  max-height: 800px;
}

.about-media img {
  width: 100%;
  height: 100%;
  max-height: 800px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.about-content {
  background: linear-gradient(180deg, #0f6647, #0b5239);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fb-section {
  background: #f4f9f6;
  border-top: 1px solid var(--line);
}

.fb-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.fb-section-head p {
  color: var(--ink-soft);
  max-width: 42ch;
  margin-top: 0.75rem;
}

.fb-section-head a {
  color: var(--brand);
  font-weight: 600;
}

.fb-feed-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10, 55, 40, 0.06), 0 16px 40px rgba(10, 55, 40, 0.1);
  background: #fff;
  min-height: 680px;
  display: flex;
  align-items: stretch;
  padding: 1.2rem;
}

.fb-feed-wrap > .fb-page,
.fb-feed-wrap > .fb-page > span,
.fb-feed-wrap > .fb-page > span > iframe {
  width: 100% !important;
  border-radius: 16px;
}

/* stale fb-post classes cleaned up */

.fb-post {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.fb-post:hover {
  box-shadow: 0 8px 24px rgba(10, 55, 40, 0.1);
  transform: translateY(-2px);
}

.fb-post-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  position: relative;
}

.fb-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  flex-shrink: 0;
}

.fb-post-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.fb-post-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.1rem;
}

.fb-logo {
  margin-left: auto;
}

.fb-post-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fb-post-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}

/* ── DONATION MODAL ─────────────────────────────── */

.donation-modal {
  width: min(820px, 94vw);
}

.donation-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.4rem;
}

.donation-top-text h2 {
  margin: 0.3rem 0 0.8rem;
}

.donation-qr {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.donation-pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.donation-method {
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.donation-method.primary {
  background: #ebf8f1;
  border: 1px solid #bce8d2;
}

.donation-method.secondary {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
}

.donation-method-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #1a6647;
  margin-bottom: 0.3rem;
}

.donation-method.secondary .donation-method-label {
  color: #555;
}

.donation-method-number {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.donation-method-hint {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
  line-height: 1.45;
}

.donation-method-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-mobilepay {
  background: linear-gradient(90deg, #5cc899, #3ab07a);
}

.donation-tiers-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.donation-grid article ul {
  padding-left: 1rem;
  margin: 0.4rem 0 0;
}

.donation-grid article ul li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}



.manifesto {
  background: var(--bg);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(11, 107, 73, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 50%, rgba(11, 107, 73, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.manifesto-mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.6;
  color: var(--brand);
  opacity: 0.18;
  margin-bottom: -1rem;
  user-select: none;
}

.manifesto blockquote {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-style: italic;
  border: 0;
  padding: 0;
}

.manifesto-byline {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.manifesto-signature {
  font-family: "Caveat", cursive;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
}

.manifesto-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.about-pills span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(220, 244, 233, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  letter-spacing: 0.02em;
}

.about-signature {
  font-family: "Caveat", cursive;
  font-size: 3.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 1.8rem;
  line-height: 1;
  user-select: none;
}

.about-content h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.02em;
}

.about-content p {
  color: #d8ece3;
  line-height: 1.7;
}

.about-content .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  box-shadow: none;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.22s ease, border-color 0.22s ease, gap 0.22s ease;
}

.about-content .btn::after {
  content: "→";
  display: inline-block;
  transition: transform 0.22s ease;
}

.about-content .btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  filter: none;
}

.about-content .btn:hover::after {
  transform: translateX(5px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-item {
  padding: 1.4rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 2px 8px rgba(10, 55, 40, 0.04), 0 8px 20px rgba(10, 55, 40, 0.05);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-item:hover::before {
  opacity: 1;
}

.timeline-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(10, 55, 40, 0.06), 0 16px 32px rgba(8, 53, 37, 0.12);
}

.year {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.socials {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.socials a {
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(239, 252, 246, 0.3);
  border-radius: 18px;
  padding: 1.4rem;
  display: grid;
  gap: 0.8rem;
  backdrop-filter: blur(4px);
}

.contact-card label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(236, 250, 244, 0.42);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.7rem;
  color: #fff;
  font: inherit;
}

.site-footer {
  background: #083626;
  color: #d9ecdf;
  padding: 0 0;
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: 56px;
  padding: 0.8rem 0;
}

.site-footer a {
  color: #eff9f4;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(3, 20, 14, 0.68);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: min(760px, 92vw);
  background: #f7fcf9;
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid #d2e5dd;
  position: relative;
  max-height: 88vh;
  overflow: auto;
  box-shadow: 0 20px 42px rgba(10, 45, 33, 0.22);
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  color: #2d4f43;
  cursor: pointer;
}

.modal h2 {
  margin: 0;
}

.modal-sub {
  color: #2a5a4b;
  font-weight: 700;
}

.modal blockquote {
  margin: 0.85rem 0;
  padding: 0.8rem 1rem;
  border-left: 4px solid #24a26f;
  background: #ebf7f1;
  color: #1e4b3d;
  border-radius: 8px;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.donation-grid article {
  border: 1px solid #d5e8df;
  border-radius: 12px;
  padding: 0.7rem;
  background: #fff;
}

.donation-grid h3 {
  margin: 0;
  color: #0b5d3e;
}

.modal-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

body.modal-open {
  overflow: hidden;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

.issue-card {
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes heroGlow {
  0% {
    background-position: 0% 40%;
  }
  100% {
    background-position: 100% 60%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes featureSwap {
  0% {
    opacity: 0.45;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .top-bar {
    display: none;
  }

  .site-header {
    inset: 0 0 auto 0;
  }

  .issue-grid,
  .timeline,
  .feed-layout,
  .contact-inner,
  .about {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .fb-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .manifesto blockquote {
    font-size: 1.15rem;
  }

  .manifesto-byline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .about-media img {
    min-height: 260px;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .hero-bg {
    background-position: 58% 30%;
  }

  .nav-toggle {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #0f5e42;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 1rem 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .menu.open {
    display: flex;
  }

  .donation-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
