/* ── VARIABLES ── */
:root {
  --green: #1A6B52;
  --green-light: #E8F5F0;
  --green-mid: #2E9B78;
  --green-border: #A8D9C8;
  --gold: #8B6914;
  --gold-light: #FDF6E3;
  --gold-border: #E8D49A;
  --bg: #F7F5F0;
  --card: #FFFFFF;
  --text: #1C1C1C;
  --muted: #6B6B6B;
  --border: #E0DDD6;
  --radius: 10px;
  --max: 1100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.6;
}
main { flex: 1; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.25rem; }
li { margin-bottom: 4px; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.content-narrow { max-width: 720px; margin: 0 auto; }

/* ── HEADER ── */
.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-weight: 600; font-size: 15px; color: var(--text); line-height: 1.2; }
.logo-sub { font-size: 10.5px; color: var(--muted); line-height: 1.3; }

.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--green); background: var(--green-light); text-decoration: none; }
.nav-link.active { color: var(--green); font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--green); }
.hero-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.page-title {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
.page-title em { font-style: italic; color: var(--green); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.btn:hover { background: var(--green-light); border-color: var(--green-border); text-decoration: none; }
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); color: #fff; }
.btn-ghost { background: transparent; color: var(--muted); border-color: var(--border); cursor: default; opacity: 0.6; }
.btn-wa { background: #E8F9F1; border-color: var(--green-border); color: var(--green); }
.btn-wa:hover { background: #D0F2E4; }

/* ── QUIZ GRID ── */
.quizzes-section { padding: 4rem 0; }
.section-title {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text);
}
.quiz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.quiz-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.quiz-card:hover { border-color: var(--green-border); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.quiz-card-coming { opacity: 0.75; }
.quiz-card-top { display: flex; align-items: center; justify-content: space-between; }
.quiz-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--green-border);
  padding: 3px 10px;
  border-radius: 4px;
}
.quiz-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
}
.quiz-badge.new { background: var(--gold-light); color: var(--gold); border: 1px solid var(--gold-border); }
.quiz-badge.soon { background: #F0F0F0; color: var(--muted); border: 1px solid var(--border); }
.quiz-title {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.quiz-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; flex: 1; }
.quiz-meta {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.quiz-btn { margin-top: 0.5rem; align-self: flex-start; }

/* ── NOTIFY STRIP ── */
.notify-strip {
  background: var(--green);
  padding: 2.5rem 0;
}
.notify-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.notify-title { font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.notify-sub { font-size: 14px; color: rgba(255,255,255,0.75); }
.notify-strip .btn-primary {
  background: #fff;
  color: var(--green);
  border-color: #fff;
  white-space: nowrap;
}
.notify-strip .btn-primary:hover { background: var(--green-light); }

/* ── CONTENT SECTION ── */
.content-section { padding: 4rem 0 5rem; }
.intro-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--green-border);
  padding-left: 1rem;
}

/* ── ABOUT ── */
.about-block { margin-bottom: 2.5rem; }
.about-block h2 {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.about-block p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 0.75rem; }
.bearers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 0.75rem;
}
.bearer-item { display: flex; flex-direction: column; }
.bearer-role { font-size: 11px; color: var(--muted); }
.bearer-name { font-size: 13.5px; font-weight: 500; color: var(--text); }
.members-list { display: flex; flex-direction: column; gap: 6px; margin-top: 0.75rem; }
.member-item { display: flex; gap: 12px; font-size: 13.5px; }
.member-pos { min-width: 130px; color: var(--muted); font-size: 12px; padding-top: 1px; }
.member-name { color: var(--text); font-weight: 500; }

/* ── REGISTER ── */
.signup-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.also-follow { text-align: center; padding: 2rem 0; }
.also-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 1rem; }
.also-sub { font-size: 13px; color: var(--muted); margin-top: 0.75rem; }
.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E8F9F1;
  border: 1px solid var(--green-border);
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  transition: background 0.15s;
}
.btn-wa-large:hover { background: #D0F2E4; text-decoration: none; }

/* ── CONTACT ── */
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.contact-icon { font-size: 24px; color: var(--green); flex-shrink: 0; }
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-value { font-size: 15px; font-weight: 500; color: var(--green); }

/* ── PRIVACY ── */
.policy-block { margin-bottom: 2rem; }
.policy-block h2 {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.policy-block h3 { font-size: 14px; font-weight: 600; color: var(--text); margin: 0.75rem 0 0.4rem; }
.policy-block p { color: var(--muted); font-size: 14.5px; line-height: 1.75; margin-bottom: 0.5rem; }
.policy-block ul { color: var(--muted); font-size: 14.5px; line-height: 1.75; }
.policy-block a { color: var(--green); }
.policy-updated { font-size: 13px; color: var(--muted); margin-top: 2.5rem; font-style: italic; }

/* ── FOOTER ── */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.footer-org { font-size: 12px; color: var(--muted); line-height: 1.5; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px 8px; justify-content: center; }
.footer-nav a { font-size: 13px; color: var(--muted); padding: 3px 8px; border-radius: 4px; }
.footer-nav a:hover { color: var(--green); text-decoration: none; }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ── MOBILE ── */
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.75rem 1.25rem 1rem;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .site-nav.open { display: flex; }
  .site-header { position: relative; }
  .hero { padding: 2.5rem 0 2rem; }
  .hero-eyebrow { padding-left: 0; }
  .hero-title { font-size: 26px; line-height: 1.25; }
  .hero-desc { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .quiz-grid { grid-template-columns: 1fr; }
  .notify-inner { flex-direction: column; text-align: center; }
  .notify-strip .btn-primary { width: 100%; justify-content: center; }
  .bearers-grid { grid-template-columns: 1fr; }
  .logo-sub { display: none; }
  .footer-copy { font-size: 11px; padding: 0 1rem; }
  .member-pos { min-width: 100px; }
}
