@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --green: #2d6a3f;
  --green-dark: #1e4d2b;
  --green-pale: #f0f7f2;
  --red: #b22222;
  --red-pale: #fdf3f3;
  --ink: #111;
  --muted: #555;
  --light: #999;
  --border: #e2e2e2;
  --border-strong: #c8c8c8;
  --bg: #f7f7f5;
  --white: #fff;
  --max: 860px;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--green-dark);
  border-bottom: 3px solid var(--red);
  z-index: 100;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  display: flex;
  flex-direction: column;
  width: 18px;
  gap: 3px;
}

.nav-logo-mark span {
  display: block;
  height: 4px;
  border-radius: 1px;
}

.nav-logo-mark span:nth-child(1) { background: #5aad70; }
.nav-logo-mark span:nth-child(2) { background: rgba(255,255,255,0.4); }
.nav-logo-mark span:nth-child(3) { background: #d45a5a; }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 0.77rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links .nav-connect {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--white);
  background: var(--red);
  padding: 6px 14px;
  border-radius: 2px;
  transition: background 0.15s;
}

.nav-links .nav-connect:hover { background: #8b1a1a; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 99;
  padding: 16px 24px;
  flex-direction: column;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }

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

/* ── HERO ── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  margin: 0 0 0 0;
}

.hero-split {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 24px 0;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 48px;
  align-items: center;
  padding-bottom: 40px;
}

.hero-kicker {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-kicker::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 0.93rem;
  color: var(--muted);
  max-width: 400px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-flag-panel {
  width: 160px;
  border: 1px solid var(--border-strong);
  overflow: hidden;
  position: relative;
  box-shadow: 4px 4px 0 var(--border);
}

.hfp-stripe {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hfp-stripe.green { background: var(--green); }
.hfp-stripe.white { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hfp-stripe.red { background: var(--red); }

.hfp-star {
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
}

.hfp-label {
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.9);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 8px;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.stat {
  padding: 24px 28px;
  border-right: 1px solid var(--border);
  max-width: var(--max);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--light);
  line-height: 1.4;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 2px;
  transition: all 0.15s;
  cursor: pointer;
}

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }

.btn-outline { border: 1px solid var(--border-strong); color: var(--muted); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #8b1a1a; }

/* ── EVENT BANNER ── */
.event-banner {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.event-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.event-date-block { text-align: center; min-width: 48px; }

.event-date-day {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.event-date-month {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.event-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

.event-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 3px;
}

.event-meta {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── SECTION ── */
.section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--green);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.section-intro {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ── FOCUS LIST ── */
.focus-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.focus-item {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.focus-item:last-child { border-bottom: none; }
.focus-item:hover { background: var(--green-pale); }

.focus-num {
  font-size: 0.68rem;
  color: var(--light);
  letter-spacing: 0.1em;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  min-width: 52px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.focus-body {
  flex: 1;
  padding: 18px 20px;
}

.focus-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.focus-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── ARTICLES ── */
.article-list { display: flex; flex-direction: column; }

.article-item {
  display: block;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.15s;
}

.article-item:first-child { padding-top: 0; }
.article-item:last-child { border-bottom: none; padding-bottom: 0; }
.article-item:hover { opacity: 0.7; }

.article-item-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.article-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 3px 8px;
}

.article-tag.green { background: var(--green); }
.article-tag.gray { background: var(--light); }

.article-date { font-size: 0.73rem; color: var(--light); }

.article-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.article-item p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
}

.article-author { font-size: 0.73rem; color: var(--light); margin-top: 8px; }

/* ── ARTICLE FULL PAGE ── */
.article-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px;
  background: var(--white);
  min-height: 80vh;
}

.article-page-eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.article-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}

.article-page-meta {
  font-size: 0.78rem;
  color: var(--light);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: center;
}

.article-page-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 12px;
  line-height: 1.25;
}

.article-page-body p {
  font-size: 0.96rem;
  line-height: 1.85;
  color: #333;
  margin-bottom: 16px;
}

.article-page-body blockquote {
  border-left: 3px solid var(--green);
  margin: 28px 0;
  padding: 14px 20px;
  background: var(--green-pale);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  font-size: 0.78rem;
  color: var(--muted);
  transition: color 0.15s;
}

.article-back:hover { color: var(--ink); }

/* ── OBSERVER TABLE ── */
.obs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  border: 1px solid var(--border);
}

.obs-table tr { border-bottom: 1px solid var(--border); }
.obs-table tr:last-child { border-bottom: none; }
.obs-table tr:nth-child(even) { background: var(--bg); }

.obs-table td {
  padding: 12px 16px;
  font-size: 0.85rem;
  vertical-align: top;
}

.obs-table td:first-child {
  font-weight: 500;
  color: var(--ink);
  width: 200px;
}

.obs-table td:nth-child(2) { color: var(--muted); font-weight: 300; }

.obs-table td:last-child {
  color: var(--green);
  font-size: 0.75rem;
  text-align: right;
  white-space: nowrap;
}

/* ── MEMBERS ── */
.member-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.member-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.member-item:last-child { border-bottom: none; }

.member-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.member-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.member-role {
  font-size: 0.73rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 8px;
}

.member-bio {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.member-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }

.member-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  border: 1px solid var(--border);
  padding: 2px 7px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.mission-block p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 14px;
}

.values-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.value-row {
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.value-row:last-child { border-bottom: none; }
.value-row:nth-child(even) { background: var(--bg); }

.value-name {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink);
  min-width: 100px;
}

.value-desc {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 5px;
}

.contact-item-value {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.6;
}

.contact-item-value a { color: var(--ink); transition: color 0.15s; }
.contact-item-value a:hover { color: var(--green); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.contact-form label {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 9px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--green); }

.contact-form textarea { min-height: 110px; resize: vertical; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 44px;
}

.page-hero-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-hero-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--green);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 500px;
}

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left: 3px solid var(--green);
  padding: 16px 24px;
  background: var(--green-pale);
  margin: 24px 0 0;
}

.quote-block p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
}

.quote-block cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--red);
  border-bottom: 1px solid #8b1a1a;
}

.cta-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cta-strip p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-top: 3px;
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.newsletter-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.newsletter-text p {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--border-strong);
  overflow: hidden;
  flex: 1;
  max-width: 340px;
}

.newsletter-form input {
  flex: 1;
  padding: 9px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  border: none;
  outline: none;
  color: var(--ink);
  background: var(--white);
}

.newsletter-form button {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 9px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.newsletter-form button:hover { background: var(--green-dark); }

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  padding: 40px 24px 28px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-flag {
  display: flex;
  gap: 3px;
}

.footer-flag span {
  display: block;
  width: 12px;
  height: 3px;
  border-radius: 1px;
}

.footer-flag span:nth-child(1) { background: #5aad70; }
.footer-flag span:nth-child(2) { background: rgba(255,255,255,0.25); }
.footer-flag span:nth-child(3) { background: #d45a5a; }

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 14px;
}

.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--white); }

.footer-social { display: flex; gap: 8px; margin-top: 12px; }
.footer-social a {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 10px;
  transition: all 0.15s;
}
.footer-social a:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 14px; }
.footer-legal a { font-size: 0.7rem; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.75); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-split { grid-template-columns: 1fr; gap: 24px; padding: 40px 24px 36px; }
  .hero-right { justify-content: flex-start; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:nth-child(2) { border-right: none; }
  .stats .stat:nth-child(n+3) { border-top: 1px solid var(--border); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .cta-strip-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .newsletter-inner { flex-direction: column; gap: 16px; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .obs-table td:nth-child(2) { display: none; }
  .event-banner-inner { grid-template-columns: auto 1fr; gap: 14px; }
  .event-divider { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .member-item { flex-direction: column; gap: 10px; }
  .stats { grid-template-columns: 1fr; }
  .stats .stat { border-right: none; border-bottom: 1px solid var(--border); }
}
