:root {
  --blue: #0a3161;
  --blue-deep: #071f3d;
  --red: #b31942;
  --red-deep: #8f1435;
  --ink: #1c1c1c;
  --muted: #5a5f6b;
  --bg: #fafaf8;
  --card: #ffffff;
  --line: #e4e2dc;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
header {
  background: var(--blue);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 4px solid var(--red);
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
}
.flag-icon { width: 38px; height: auto; flex-shrink: 0; }
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 22px;
  font-size: 0.95rem;
  opacity: 0.9;
}
nav a:hover { opacity: 1; text-decoration: underline; }
.hero {
  position: relative;
  color: #fff;
  padding: 100px 24px 80px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7,31,61,0.5) 0%, rgba(10,49,97,0.45) 100%),
    url('founders-hero-bg.jpg');
  background-size: cover;
  background-position: center 25%;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 18px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.8);
}
.hero p {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  color: #eef1f7;
  text-shadow: 0 1px 6px rgba(0,0,0,0.65);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Compact page-header hero used on interior pages (Agenda, Blog) */
.page-hero {
  position: relative;
  color: #fff;
  padding: 64px 24px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7,31,61,0.72) 0%, rgba(10,49,97,0.68) 100%),
    url('founders-hero-bg.jpg');
  background-size: cover;
  background-position: center 25%;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: #eef1f7;
  text-shadow: 0 1px 6px rgba(0,0,0,0.65);
}

.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--red-deep); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.05rem;
  border: 2px solid #fff;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
section {
  max-width: 960px;
  margin: 0 auto;
  padding: 70px 24px;
}
.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 1.9rem;
  color: var(--blue);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px;
}
.issues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  padding: 28px;
}
.card h3 {
  margin-top: 0;
  color: var(--blue);
  font-size: 1.15rem;
}
.card p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 0;
}
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.quote-card {
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  padding: 30px 26px;
  position: relative;
  border-left: 6px solid var(--red);
}
.quote-card p.text {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.08rem;
  color: #eef1f7;
  margin: 0 0 16px;
}
.quote-card p.attr {
  font-weight: 700;
  font-size: 0.9rem;
  color: #cfd8e8;
  margin: 0;
}
.quote-card p.attr span {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: #9fb0cc;
  margin-top: 2px;
}
.about {
  background: #f1efe8;
  border-radius: 12px;
  padding: 48px;
  border-top: 4px solid var(--blue);
}
.about p { color: var(--ink); }
.join {
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  padding: 60px 40px;
}
.join h2 { margin-top: 0; color: #fff; text-align: center; }
.join > p.lead {
  color: #dbe0ec;
  max-width: 560px;
  margin: 0 auto 36px;
  text-align: center;
}
.petition-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.petition-form input {
  padding: 13px 16px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}
.petition-form button {
  margin-top: 6px;
}
.petition-note {
  text-align: center;
  font-size: 0.85rem;
  color: #b8c4dc;
  margin-top: 16px;
}
.form-success {
  display: none;
  text-align: center;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 18px;
  margin-top: 10px;
}
.donate {
  background: var(--red);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 60px 32px;
}
.donate h2 { margin-top: 0; color: #fff; }
.donate p { color: #fdeef2; max-width: 560px; margin: 0 auto 28px; }
.donate .btn { background: #fff; color: var(--red); }
.donate .btn:hover { background: #f2f2f2; }
.contact {
  text-align: center;
}
.contact a { color: var(--blue); }
footer {
  background: var(--blue-deep);
  color: #cfd8e8;
  padding: 32px 24px;
  text-align: center;
  font-size: 0.85rem;
  border-top: 4px solid var(--red);
}
footer a { color: #cfd8e8; }
footer .disclosure {
  max-width: 700px;
  margin: 0 auto 10px;
}

/* ---- Agenda page ---- */
.agenda-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 6px solid var(--blue);
  border-radius: 10px;
  padding: 26px 28px;
  margin-bottom: 20px;
}
.agenda-item h3 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 1.2rem;
}
.agenda-item .plank-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.agenda-item ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}
.agenda-item li { margin-bottom: 8px; }
.agenda-item li .vehicle {
  display: inline-block;
  background: #f1efe8;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

/* ---- Blog listing + posts ---- */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  padding: 26px 28px;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { border-top-color: var(--red-deep); }
.blog-card .blog-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card h3 {
  margin: 6px 0 8px;
  color: var(--blue);
  font-size: 1.25rem;
}
.blog-card p {
  color: var(--muted);
  margin: 0;
}
.post {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
}
.post .post-meta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.post h1 {
  color: var(--blue);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 0 0 24px;
  line-height: 1.25;
}
.post p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.post h2 {
  color: var(--blue);
  font-size: 1.35rem;
  margin: 36px 0 14px;
}
.post .sources {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}
.post .sources a { color: var(--blue); }
.post .back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}
.post .back-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
  nav { display: none; }
  section, .post { padding: 48px 20px; }
  .about, .join { padding: 28px; }
}
