/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #1a2e1a;
  --moss:   #3d5c2e;
  --sage:   #7a9e6e;
  --fern:   #b8cfa8;
  --cream:  #f5f0e8;
  --sand:   #e8dfc8;
  --gold:   #c9a84c;
  --white:  #fdfcf9;
  --text:   #1a1a18;
  --muted:  #5a5a52;
  --nav-h:  72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(26,46,26,0.96);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--sage); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; color: var(--white);
}
.nav-logo-text { color: var(--white); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.3; }
.nav-logo-sub  { color: var(--fern); font-size: 10px; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 13px; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fern); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--forest) !important;
  padding: 8px 18px; border-radius: 4px; font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-links .nav-cta:hover { background: #dbb85a !important; }

.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
}
.nav-mobile-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--forest); z-index: 99; padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile-drawer ul { list-style: none; }
.nav-mobile-drawer a {
  display: block; padding: 12px 0; color: rgba(255,255,255,0.8);
  text-decoration: none; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
body.nav-open .nav-mobile-drawer { display: block; }

/* ── ALERT BAR ── */
.alert-bar {
  margin-top: var(--nav-h);
  background: var(--gold); color: var(--forest);
  text-align: center; padding: 12px 48px;
  font-size: 13px; font-weight: 500;
}
.alert-bar a { color: var(--forest); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--forest); }

/* ── LAYOUT ── */
section { padding: 96px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }

.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: inline-block; width: 22px; height: 1px; background: var(--sage); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; line-height: 1.2; color: var(--forest);
}
.section-title em { font-style: italic; color: var(--moss); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--sage); color: var(--white);
  padding: 14px 28px; border-radius: 4px;
  text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--moss); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(245,240,232,0.3); color: var(--cream);
  padding: 14px 28px; border-radius: 4px;
  text-decoration: none; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--fern); color: var(--fern); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--moss); color: var(--moss);
  padding: 12px 22px; border-radius: 4px;
  text-decoration: none; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--moss); color: var(--white); }
.btn-outline::after { content: '→'; }

/* ── HERO ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
}
.hero-left {
  background: var(--forest); padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--sage); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px); font-weight: 400; line-height: 1.12;
  color: var(--cream); margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--fern); }
.hero-body { font-size: 16px; color: rgba(245,240,232,0.72); max-width: 420px; margin-bottom: 44px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; background: var(--moss); }
.hero-cover-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,46,26,0.35) 0%, transparent 60%);
}

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px; background: var(--sage); opacity: 0.18; border-radius: 50%;
}
.about-text p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-top: 24px; margin-bottom: 24px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.stat-item { border-top: 2px solid var(--sage); padding-top: 16px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--forest); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ── EVENTS ── */
.events { background: var(--white); }
.events-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.events-link { font-size: 13px; color: var(--moss); text-decoration: none; border-bottom: 1px solid var(--fern); padding-bottom: 2px; }
.events-link:hover { color: var(--forest); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.event-card {
  background: var(--cream); padding: 36px 32px;
  display: flex; flex-direction: column; transition: background 0.25s;
}
.event-card:hover { background: var(--sand); }
.event-card.featured { grid-column: span 2; background: var(--forest); color: var(--cream); }
.event-card.featured:hover { background: #1f3a1f; }
.event-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.event-card.featured .event-tag { color: var(--fern); }
.event-date { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--gold); margin-bottom: 10px; }
.event-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; line-height: 1.25; color: var(--forest); margin-bottom: 12px; }
.event-title a { text-decoration: none; color: inherit; }
.event-card.featured .event-title { font-size: 28px; color: var(--cream); }
.event-detail { font-size: 13px; color: var(--muted); flex: 1; margin-bottom: 24px; }
.event-card.featured .event-detail { color: rgba(245,240,232,0.65); }
.event-link {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--moss); text-decoration: none; display: flex; align-items: center; gap: 6px; margin-top: auto;
  transition: gap 0.15s;
}
.event-link::after { content: '→'; }
.event-link:hover { gap: 10px; }
.event-card.featured .event-link { color: var(--fern); }
.save-dates {
  margin-top: 2px; background: var(--forest); padding: 32px;
  display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 32px;
}
.save-dates-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); padding-top: 4px; white-space: nowrap; }
.save-dates-list { display: flex; flex-wrap: wrap; gap: 8px; }
.save-date-pill {
  font-size: 12px; color: rgba(245,240,232,0.7);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px; border-radius: 20px;
}

/* ── NEWS ── */
.news { background: var(--cream); }
.news-card { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; background: var(--white); border-radius: 6px; overflow: hidden; }
.news-img-wrap { position: relative; height: 100%; min-height: 360px; }
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.news-content { padding: 52px 52px 52px 0; }
.news-source { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.news-source::before { content: ''; width: 16px; height: 1px; background: var(--sage); display: inline-block; }
.news-content h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; line-height: 1.3; color: var(--forest); margin-bottom: 18px; }
.news-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }

/* ── GALLERY ── */
.gallery { background: var(--forest); overflow: hidden; }
.gallery .section-title { color: var(--cream); }
.gallery .section-label { color: var(--sage); }
.gallery-header { margin-bottom: 40px; }
.gallery-track-wrap { overflow: hidden; }
.gallery-track {
  display: flex; gap: 12px;
  animation: scroll-gallery 40s linear infinite;
  width: max-content;
}
.gallery-track:hover { animation-play-state: paused; }
/* Ghost renders images from post content inside .gallery-track */
.gallery-track img,
.gallery-track figure img {
  width: 280px; height: 200px; object-fit: cover;
  border-radius: 6px; flex-shrink: 0; display: block;
}
.gallery-track figure { margin: 0; flex-shrink: 0; }
@keyframes scroll-gallery {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery-footer { margin-top: 36px; text-align: center; }

/* ── SPONSORS ── */
.sponsors { background: var(--white); }
.sponsors-header { margin-bottom: 56px; }
.sponsor-featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 2px; }
.sponsor-card { background: var(--cream); padding: 40px 36px; transition: background 0.2s; }
.sponsor-card:hover { background: var(--sand); }
.sponsor-tier { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
.sponsor-tier::before { content: ''; width: 14px; height: 1px; background: var(--gold); display: inline-block; }
.sponsor-logo-wrap { height: 50px; display: flex; align-items: center; margin-bottom: 20px; }
.sponsor-logo-wrap img { max-height: 42px; max-width: 160px; object-fit: contain; }
.sponsor-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.sponsor-card a { color: var(--moss); font-weight: 500; text-decoration: none; }
.sponsors-grid { background: var(--cream); padding: 40px 36px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px 56px; }
.sponsor-logo-sm img { height: 32px; max-width: 120px; object-fit: contain; filter: grayscale(40%); opacity: 0.75; transition: filter 0.2s, opacity 0.2s; }
.sponsor-logo-sm img:hover { filter: none; opacity: 1; }
.sponsor-name-text { font-size: 14px; color: var(--muted); }
.view-all-sponsors { text-align: center; margin-top: 24px; font-size: 13px; color: var(--muted); }
.view-all-sponsors a { color: var(--moss); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--fern); }

/* ── INITIATIVES ── */
.initiatives { background: var(--forest); }
.initiatives .section-title { color: var(--cream); }
.initiatives .section-label { color: var(--sage); }
.initiatives-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.initiative-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 44px; transition: background 0.25s; text-decoration: none; display: block;
}
.initiative-card:hover { background: rgba(255,255,255,0.09); }
.initiative-icon { width: 44px; height: 44px; margin-bottom: 24px; background: rgba(122,158,110,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.initiative-img { width: 44px; height: 44px; margin-bottom: 24px; border-radius: 50%; overflow: hidden; }
.initiative-img img { width: 100%; height: 100%; object-fit: cover; }
.initiative-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--cream); margin-bottom: 12px; line-height: 1.25; }
.initiative-card p { font-size: 14px; color: rgba(245,240,232,0.6); line-height: 1.7; margin-bottom: 24px; }
.initiative-arrow { color: var(--fern); font-size: 13px; letter-spacing: 0.08em; }

/* ── JOIN / CONTACT ── */
.join { background: var(--cream); }
.join-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
.join-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 3.5vw, 48px); font-weight: 400; color: var(--forest); line-height: 1.2; margin-bottom: 24px; }
.join-text p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.join-steps { list-style: none; margin-bottom: 36px; }
.join-step { display: grid; grid-template-columns: 28px 1fr; gap: 16px; align-items: start; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.join-step:last-child { border-bottom: none; }
.step-num { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--sage); font-style: italic; padding-top: 2px; }
.step-text { font-size: 14px; color: var(--text); }
.step-text a { color: var(--moss); }
.contact-card { background: var(--forest); border-radius: 6px; padding: 48px 40px; color: var(--cream); }
.contact-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; color: rgba(245,240,232,0.75); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { color: var(--sage); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.contact-item a { color: var(--fern); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.excomm-note { margin-top: 28px; padding: 16px; background: rgba(255,255,255,0.06); border-radius: 4px; border-left: 2px solid var(--sage); font-size: 13px; color: rgba(245,240,232,0.65); line-height: 1.6; }

/* ── FOOTER ── */
.site-footer {
  background: #0e1a0e; padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-brand strong { color: rgba(255,255,255,0.6); }
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--fern); }
.footer-links li { display: inline; }

/* ── ARCHIVE / TAG PAGES ── */
.archive-header { padding-top: calc(var(--nav-h) + 64px); padding-bottom: 40px; }
.archive-desc { color: var(--muted); font-size: 16px; margin-top: 16px; max-width: 600px; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding-bottom: 80px; }

/* ── SINGLE POST ── */
.single-post, .static-page { padding-top: var(--nav-h); }
.post-header, .page-header { padding-top: 64px; padding-bottom: 40px; }
.post-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 56px); font-weight: 400; line-height: 1.15; color: var(--forest); margin-top: 12px; }
.post-meta { font-size: 14px; color: var(--muted); margin-top: 16px; }
.post-hero-img, .page-hero-img { max-height: 520px; overflow: hidden; }
.post-hero-img img, .page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-content, .page-content {
  padding-top: 48px; padding-bottom: 80px;
  max-width: 740px;
}
.gh-content h1, .gh-content h2, .gh-content h3 { font-family: 'Playfair Display', serif; color: var(--forest); margin: 1.5em 0 0.5em; }
.gh-content p { color: var(--muted); line-height: 1.85; margin-bottom: 1.25em; font-size: 17px; }
.gh-content a { color: var(--moss); }
.gh-content ul, .gh-content ol { color: var(--muted); padding-left: 1.5em; margin-bottom: 1.25em; }
.gh-content li { line-height: 1.75; margin-bottom: 0.4em; font-size: 17px; }
.gh-content img { max-width: 100%; border-radius: 4px; margin: 1em 0; }
.gh-content blockquote { border-left: 3px solid var(--sage); padding-left: 1.25em; margin: 1.5em 0; color: var(--muted); font-style: italic; }
.post-footer { padding-bottom: 80px; }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 12px; padding: 40px 0 80px; }
.pagination a { font-size: 13px; color: var(--moss); text-decoration: none; border: 1px solid var(--fern); padding: 8px 18px; border-radius: 4px; transition: background 0.2s; }
.pagination a:hover { background: var(--cream); }

/* ── FADE-IN ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 24px; min-height: 80vh; }
  .about-grid, .news-card, .join-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .news-img-wrap { min-height: 260px; }
  .news-content { padding: 32px; }
  .events-grid, .archive-grid { grid-template-columns: 1fr; }
  .event-card.featured { grid-column: span 1; }
  .sponsor-featured { grid-template-columns: 1fr; }
  .initiatives-grid { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
  section { padding: 64px 0; }
  .save-dates { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; padding: 36px 24px; }
}

/* ── GHOST KOENIG EDITOR REQUIRED CLASSES ── */
.gh-content .kg-width-wide {
  width: 85vw;
  max-width: 1200px;
  margin-left: calc(50% - 42.5vw);
}
.gh-content .kg-width-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.gh-content .kg-image { max-width: 100%; }
.gh-content .kg-image-card { margin: 1.5em 0; }
.gh-content .kg-image-card img { display: block; max-width: 100%; border-radius: 4px; }
.gh-content .kg-gallery-container { display: flex; flex-direction: column; gap: 4px; margin: 1.5em 0; }
.gh-content .kg-gallery-row { display: flex; gap: 4px; }
.gh-content .kg-gallery-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gh-content .kg-embed-card { margin: 1.5em 0; }
.gh-content .kg-bookmark-card { margin: 1.5em 0; border: 1px solid var(--sand); border-radius: 6px; overflow: hidden; }
.gh-content .kg-callout-card { display: flex; gap: 12px; margin: 1.5em 0; padding: 20px; background: var(--cream); border-radius: 6px; border-left: 4px solid var(--sage); }
.gh-content .kg-callout-text { font-size: 16px; color: var(--text); line-height: 1.7; }
.gh-content .kg-toggle-card { margin: 1.5em 0; border: 1px solid var(--sand); border-radius: 6px; overflow: hidden; }
.gh-content .kg-toggle-heading-text { font-family: 'Playfair Display', serif; font-size: 18px; }
.gh-content .kg-video-card { margin: 1.5em 0; }
.gh-content .kg-video-card video { width: 100%; border-radius: 4px; }
.gh-content .kg-divider { border: none; border-top: 1px solid var(--sand); margin: 2em 0; }
.gh-content figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px; }
