@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Bebas+Neue&family=Share+Tech+Mono&display=swap');

/* =============================================
   MUTANT NETWORK — GHOST THEME
   mutant-network.com · Portland OR
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #e8e4d8;
  --ink-dim: #888;
  --ink-mute: #555;
  --ink-ghost: #333;
  --paper: #0a0a0a;
  --paper-lift: #111;
  --border: rgba(232,228,216,0.15);
  --border-mid: rgba(232,228,216,0.25);
  --border-hard: #e8e4d8;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Special Elite', Georgia, serif;
  --font-mono: 'Share Tech Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* GRAIN TEXTURE */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1;
}

h1 { font-size: clamp(36px, 6vw, 64px); }
h2 { font-size: clamp(24px, 4vw, 40px); }
h3 { font-size: clamp(18px, 3vw, 28px); }

p { margin-bottom: 1rem; color: var(--ink-mute); }

a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--ink-dim); }

/* =============================================
   LOGO MARK SVG
   ============================================= */

.mn-logomark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* =============================================
   MARQUEE STRIP
   ============================================= */

.mn-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  padding: 5px 0;
}

.mn-marquee__inner {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-ghost);
  display: inline-block;
  animation: marquee-scroll 25s linear infinite;
}

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

/* =============================================
   NAVIGATION — DESKTOP
   ============================================= */

.mn-nav {
  display: flex;
  align-items: stretch;
  border-top: 3px solid var(--border-hard);
  border-bottom: 3px solid var(--border-hard);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
}

.mn-nav__brand {
  padding: 10px 18px;
  border-right: 3px solid var(--border-hard);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.mn-nav__brand-text { display: flex; flex-direction: column; }

.mn-nav__logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1;
}

.mn-nav__sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.mn-nav__links {
  display: flex;
  flex: 1;
  align-items: stretch;
}

.mn-nav__links a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--border);
  transition: background 0.15s;
}

.mn-nav__links a:last-child { border-right: none; }
.mn-nav__links a:hover { background: rgba(232,228,216,0.06); }
.mn-nav__links a.active { background: var(--ink); color: var(--paper); }

.mn-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 18px 16px;
  cursor: pointer;
  background: none;
  border: none;
  border-left: 1px solid var(--border);
}

.mn-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.2s;
}

/* MOBILE NAV DRAWER */
.mn-nav__drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  z-index: 200;
  flex-direction: column;
  padding: 20px;
}

.mn-nav__drawer.open { display: flex; }

.mn-nav__drawer-close {
  align-self: flex-end;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 30px;
}

.mn-nav__drawer a {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.mn-nav__drawer a.active { color: var(--ink-dim); }

/* MOBILE BOTTOM TAB BAR */
.mn-tabbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-top: 2px solid var(--border-hard);
  background: var(--paper);
}

.mn-tabbar__inner {
  display: flex;
}

.mn-tabbar__tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px 10px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-decoration: none;
  border-right: 1px solid var(--border);
  gap: 4px;
}

.mn-tabbar__tab:last-child { border-right: none; }
.mn-tabbar__tab.active { background: var(--ink); color: var(--paper); }
.mn-tabbar__tab svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* =============================================
   SECTION HEADING
   ============================================= */

.mn-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.mn-section-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 4px, transparent 4px, transparent 8px);
}

.mn-section-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.15em;
  color: var(--ink);
  white-space: nowrap;
}

/* =============================================
   BUTTONS
   ============================================= */

.mn-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.15em;
  padding: 11px 28px;
  border: 2px solid var(--border-hard);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.mn-btn--solid { background: var(--ink); color: var(--paper); }
.mn-btn--solid:hover { background: #ccc; border-color: #ccc; color: var(--paper); }
.mn-btn--outline { background: transparent; color: var(--ink); }
.mn-btn--outline:hover { background: rgba(232,228,216,0.08); color: var(--ink); }

/* =============================================
   EVENT CARDS
   ============================================= */

.mn-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}

.mn-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  display: block;
  transition: background 0.15s;
}

.mn-card:hover { background: rgba(255,255,255,0.05); }

.mn-card--inv { background: var(--ink); }
.mn-card--inv:hover { background: #d0ccbc; }
.mn-card--inv .mn-card__tag { color: var(--paper); }
.mn-card--inv .mn-card__num { color: #aaa; }
.mn-card--inv .mn-card__title { color: var(--paper); }
.mn-card--inv .mn-card__meta { color: #555; }
.mn-card--inv .mn-card__top { border-bottom-color: rgba(0,0,0,0.12); }
.mn-card--inv .mn-card__bar { background: repeating-linear-gradient(90deg,#0a0a0a 0,#0a0a0a 3px,transparent 3px,transparent 6px); }

.mn-card__bar {
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--ink) 0, var(--ink) 3px, transparent 3px, transparent 6px);
}

.mn-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 10px 6px;
  border-bottom: 1px solid var(--border);
}

.mn-card__tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.mn-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-ghost);
}

.mn-card__body { padding: 8px 10px 12px; }

.mn-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 5px;
  line-height: 1.15;
}

.mn-card__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-mute);
  line-height: 1.6;
}

.mn-card__arrow {
  font-size: 18px;
  color: var(--ink-ghost);
  float: right;
  margin-top: -2px;
}

/* =============================================
   HERO
   ============================================= */

.mn-hero {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 1.5rem clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.mn-hero__circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  position: relative;
}

.mn-hero__circle svg { width: 100%; height: 100%; }

.mn-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-bottom: 10px;
}

.mn-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 80px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-shadow: 4px 4px 0 #000;
  margin-bottom: 6px;
}

.mn-hero__title span {
  display: block;
  font-size: clamp(28px, 6vw, 48px);
  letter-spacing: 0.18em;
  color: var(--ink-dim);
}

.mn-hero__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-mute);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.mn-hero__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   MANIFESTO
   ============================================= */

.mn-manifesto {
  border: 1px dashed var(--border);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.8;
  color: var(--ink-ghost);
  letter-spacing: 0.04em;
}

/* =============================================
   CALENDAR PAGE
   ============================================= */

.mn-cal-page {
  display: grid;
  grid-template-columns: 1fr 300px;
  min-height: calc(100vh - 130px);
}

.mn-cal-side {
  border-right: 1px solid var(--border);
  padding: 20px;
}

.mn-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mn-cal-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.mn-cal-navbtn {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--border-mid);
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.mn-cal-navbtn:hover { background: rgba(232,228,216,0.1); }

.mn-tag-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.mn-tag-btn {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border: 1px solid var(--border-mid);
  color: var(--ink-mute);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
}

.mn-tag-btn.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.mn-cal-grid { width: 100%; border-collapse: collapse; }

.mn-cal-grid th {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-ghost);
  text-align: center;
  padding: 6px 0;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.mn-cal-grid td {
  height: 64px;
  vertical-align: top;
  border: 1px solid rgba(232,228,216,0.07);
  padding: 5px 6px;
  cursor: default;
  transition: background 0.1s;
  width: 14.28%;
}

.mn-cal-grid td.has-event { cursor: pointer; }
.mn-cal-grid td.has-event:hover { background: rgba(232,228,216,0.06); }
.mn-cal-grid td.other-month .mn-day-num { color: #222; }
.mn-cal-grid td.today { border-color: var(--border-mid); }
.mn-cal-grid td.today .mn-day-num { color: var(--ink); }
.mn-cal-grid td.selected { background: var(--ink) !important; }
.mn-cal-grid td.selected .mn-day-num { color: var(--paper) !important; }
.mn-cal-grid td.selected .mn-ev-dot { background: var(--paper) !important; }

.mn-day-num {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink-ghost);
  line-height: 1;
  display: block;
}

.has-event .mn-day-num { color: var(--ink); }

.mn-ev-dots { display: flex; gap: 3px; flex-wrap: wrap; margin-top: 4px; }

.mn-ev-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
}

.mn-ev-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--ink-dim);
  margin-top: 3px;
  line-height: 1.3;
  overflow: hidden;
  max-height: 26px;
}

/* SIDEBAR */
.mn-cal-sidebar {
  padding: 20px 16px;
  overflow-y: auto;
}

.mn-sidebar-title {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 8px;
}

.mn-ev-detail {
  border: 1px solid var(--border-hard);
  padding: 12px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.03);
}

.mn-ev-detail__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.mn-ev-detail__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}

.mn-ev-detail__row {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-mute);
  line-height: 1.9;
}

.mn-ev-detail__desc {
  font-size: 12px;
  color: var(--ink-ghost);
  margin-top: 8px;
  line-height: 1.6;
}

.mn-ev-detail__btn {
  width: 100%;
  margin-top: 10px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  padding: 10px;
  cursor: pointer;
  display: block;
  text-align: center;
  text-decoration: none;
}

/* =============================================
   STATIC PAGES (About, Contact, Membership)
   ============================================= */

.mn-static-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.mn-static-page h1 {
  font-size: clamp(32px, 6vw, 56px);
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 0 #000;
}

.mn-static-page .mn-page-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}

.mn-static-page hr {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 2rem 0;
}

.mn-static-page .gh-content { color: var(--ink-mute); }
.mn-static-page .gh-content h2 { color: var(--ink); margin: 2rem 0 0.75rem; font-size: 28px; }
.mn-static-page .gh-content h3 { color: var(--ink); margin: 1.5rem 0 0.5rem; font-size: 22px; }
.mn-static-page .gh-content p { margin-bottom: 1rem; line-height: 1.75; }
.mn-static-page .gh-content ul { padding-left: 1.2rem; margin-bottom: 1rem; color: var(--ink-mute); }
.mn-static-page .gh-content li { margin-bottom: 0.4rem; }
.mn-static-page .gh-content a { color: var(--ink); }
.mn-static-page .gh-content strong { color: var(--ink); font-family: var(--font-display); letter-spacing: 0.05em; }
.mn-static-page .gh-content figure { margin: 1.5rem 0; }
.mn-static-page .gh-content figure img { width: 100%; border: 1px solid var(--border); }
.mn-static-page .gh-content blockquote {
  border-left: 3px solid var(--border-hard);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.03em;
}

/* STATS ROW */
.mn-stats {
  display: flex;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}

.mn-stat {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid var(--border);
}

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

.mn-stat__num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
}

.mn-stat__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  margin-top: 4px;
}

/* =============================================
   VOLUNTEER PAGE
   ============================================= */

.mn-volunteer-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 130px);
}

.mn-volunteer-info {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
}

.mn-volunteer-form-side {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mn-volunteer-form-side h2 {
  font-size: 28px;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 10px;
}

.mn-form-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-ghost);
  margin-bottom: 16px;
  line-height: 1.7;
}

#mn-volunteer-btn {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.2em;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.15s;
}

#mn-volunteer-btn:hover { background: #ccc; }

/* =============================================
   SINGLE POST
   ============================================= */

.mn-post {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.mn-post__feature-image {
  width: 100%;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.mn-post__feature-image img { width: 100%; display: block; }

.mn-post__tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: 8px;
}

.mn-post__title { margin-bottom: 1rem; text-shadow: 3px 3px 0 #000; }

.mn-post__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-ghost);
  line-height: 1.8;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  padding: 10px 0;
  margin-bottom: 2rem;
}

.mn-post__content { color: var(--ink-mute); }
.mn-post__content p { margin-bottom: 1.25rem; line-height: 1.75; }
.mn-post__content h2 { color: var(--ink); margin: 2rem 0 0.75rem; font-size: 28px; }
.mn-post__content h3 { color: var(--ink); margin: 1.5rem 0 0.5rem; font-size: 22px; }
.mn-post__content img { max-width: 100%; border: 1px solid var(--border); }
.mn-post__content blockquote {
  border-left: 3px solid var(--border-hard);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-dim);
}

.mn-post__back {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 16px;
  margin-bottom: 2rem;
  transition: all 0.15s;
}

.mn-post__back:hover { background: rgba(232,228,216,0.06); color: var(--ink); }

/* =============================================
   FOOTER
   ============================================= */

.mn-footer {
  border-top: 3px solid var(--border-hard);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.mn-footer__copy {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-ghost);
  text-transform: uppercase;
}

.mn-footer__links {
  display: flex;
  gap: 1.25rem;
}

.mn-footer__links a {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.15s;
}

.mn-footer__links a:hover { color: var(--ink); }

/* =============================================
   MOBILE PADDING (for fixed tab bar)
   ============================================= */

@media (max-width: 768px) {
  body { padding-bottom: 70px; }

  .mn-nav__links { display: none; }
  .mn-nav__hamburger { display: flex; }
  .mn-tabbar { display: block; }

  .mn-cal-page { grid-template-columns: 1fr; }
  .mn-cal-sidebar { border-top: 1px solid var(--border); }

  .mn-volunteer-page { grid-template-columns: 1fr; }
  .mn-volunteer-info { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem; }
  .mn-volunteer-form-side { padding: 1.5rem; }

  .mn-cards { grid-template-columns: 1fr; }

  .mn-hero__btns { flex-direction: column; align-items: center; }
  .mn-btn { width: 100%; text-align: center; }

  .mn-static-page { padding: 1.5rem 1rem 3rem; }
  .mn-post { padding: 1.5rem 1rem 3rem; }

  .mn-footer { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   MEMBERSHIP TIERS
   ============================================= */

.mn-membership-intro {
  margin-bottom: 0;
}

.mn-tier-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 1rem;
}

.mn-tier-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
}

.mn-tier-card--featured {
  border-color: var(--border-hard);
  background: rgba(232,228,216,0.04);
}

.mn-tier-card__bar {
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--ink) 0, var(--ink) 3px, transparent 3px, transparent 6px);
}

.mn-tier-card--featured .mn-tier-card__bar {
  background: var(--ink);
}

.mn-tier-card__inner {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mn-tier-card__badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.mn-tier-card__label {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 4px;
}

.mn-tier-card__price {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}

.mn-tier-card__price span {
  font-size: 16px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}

.mn-tier-card__desc {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-ghost);
  line-height: 1.7;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.mn-tier-card__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-top: 1px dashed var(--border);
  padding-top: 10px;
  flex: 1;
}

.mn-tier-card__perks li {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-mute);
  line-height: 1.8;
  padding-left: 12px;
  position: relative;
}

.mn-tier-card__perks li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--ink-ghost);
  font-size: 8px;
  top: 2px;
}

.mn-tier-btn {
  width: 100%;
  text-align: center;
  font-size: 13px;
  padding: 10px 16px;
}

@media (max-width: 768px) {
  .mn-tier-cards {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   KOENIG EDITOR — REQUIRED GHOST CLASSES
   ============================================= */

.gh-content .kg-width-wide {
  margin-left: calc(50% - 50vw + 2rem);
  margin-right: calc(50% - 50vw + 2rem);
  max-width: none;
}

.gh-content .kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
}

.gh-content .kg-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.gh-content .kg-image-card {
  margin: 1.5rem 0;
}

.gh-content .kg-image-card img {
  border: 1px solid var(--border);
  display: block;
  width: 100%;
  height: auto;
}

.gh-content .kg-image-card figcaption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-ghost);
  text-align: center;
  margin-top: 6px;
}

.gh-content .kg-gallery-card {
  margin: 1.5rem 0;
}

.gh-content .kg-gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gh-content .kg-gallery-image img {
  border: 1px solid var(--border);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-content .kg-embed-card {
  margin: 1.5rem 0;
}

.gh-content .kg-embed-card iframe {
  width: 100%;
}

.gh-content .kg-bookmark-card {
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}

.gh-content .kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: var(--ink);
  padding: 12px;
  gap: 12px;
}

.gh-content .kg-bookmark-content { flex: 1; }

.gh-content .kg-bookmark-title {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 4px;
}

.gh-content .kg-bookmark-description {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-mute);
  line-height: 1.6;
}

.gh-content .kg-bookmark-thumbnail img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.gh-content .kg-callout-card {
  border-left: 3px solid var(--border-hard);
  padding: 12px 16px;
  margin: 1.5rem 0;
  background: rgba(255,255,255,0.03);
  display: flex;
  gap: 12px;
}

.gh-content .kg-callout-emoji {
  font-size: 20px;
  flex-shrink: 0;
}

.gh-content .kg-callout-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.7;
}

.gh-content .kg-toggle-card {
  border: 1px solid var(--border);
  margin: 1rem 0;
}

.gh-content .kg-toggle-heading {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--ink);
}

.gh-content .kg-toggle-content {
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.gh-content .kg-divider {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 2rem 0;
}

.gh-content .kg-button-card {
  margin: 1.5rem 0;
  text-align: center;
}

.gh-content .kg-button-card a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.15em;
  padding: 11px 28px;
  border: 2px solid var(--border-hard);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.gh-content .kg-audio-card {
  border: 1px solid var(--border);
  padding: 12px;
  margin: 1.5rem 0;
  background: rgba(255,255,255,0.02);
}

.gh-content .kg-video-card {
  margin: 1.5rem 0;
}

.gh-content .kg-video-card video {
  width: 100%;
  border: 1px solid var(--border);
}

/* =============================================
   EVENTS IMAGE GRID
   ============================================= */

.mn-events-wrap { padding: 0; }

.mn-events-grid-section {
  padding: 20px 20px 10px;
}

.mn-events-divider {
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 4px, transparent 4px, transparent 8px);
  margin: 20px 20px 0;
}

.mn-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.mn-img-grid__loading,
.mn-img-grid__empty {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-ghost);
  padding: 20px 0;
  grid-column: 1 / -1;
}

.mn-img-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  transition: background 0.15s;
  position: relative;
}

.mn-img-card:hover { background: rgba(255,255,255,0.05); }
.mn-img-card:hover .mn-img-card__img img { opacity: 0.85; }

.mn-img-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-lift);
  position: relative;
}

.mn-img-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  transition: opacity 0.2s, filter 0.2s;
}

.mn-img-card:hover .mn-img-card__img img {
  filter: grayscale(80%) contrast(1.1);
}

.mn-img-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    rgba(232,228,216,0.03) 0px,
    rgba(232,228,216,0.03) 2px,
    transparent 2px,
    transparent 10px
  );
}

.mn-img-card__placeholder span {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ink-ghost);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.mn-img-card__bar {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink) 0, var(--ink) 3px, transparent 3px, transparent 6px);
}

.mn-img-card__info {
  padding: 8px 10px 10px;
}

.mn-img-card__tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--ink-ghost);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.mn-img-card__title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 4px;
}

.mn-img-card__date {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}

/* CALENDAR SECTION spacing when below grid */
#mn-cal-section {
  padding: 20px;
}

@media (max-width: 768px) {
  .mn-img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #mn-cal-section {
    padding: 16px;
  }
}

/* =============================================
   READABILITY OVERRIDES
   ============================================= */

/* Body text — brighter, bigger, more breathing room */
p {
  color: #b0a888;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

/* Ghost content areas */
.gh-content p,
.mn-post__content p {
  color: #b0a888;
  font-size: 15px;
  line-height: 1.85;
}

/* Static page body */
.mn-static-page p { color: #b0a888; font-size: 15px; line-height: 1.85; }

/* Volunteer info text */
.mn-volunteer-info .gh-content p { color: #b0a888; }

/* Headings — crisper */
.mn-static-page h1,
.mn-post__title { color: #f0ece0; }

.gh-content h2,
.mn-post__content h2 { color: #f0ece0; font-size: 30px; margin: 2rem 0 0.75rem; }

.gh-content h3,
.mn-post__content h3 { color: #d8d0b8; font-size: 24px; }

/* Mono text — a touch lighter */
.mn-card__meta,
.mn-ev-label,
.mn-ev-detail__row,
.mn-form-note,
.mn-page-eyebrow,
.mn-footer__copy,
.mn-logo-sub,
.mn-hero__eyebrow { color: #777060; }

/* Manifesto text — legible */
.mn-manifesto { color: #666050; font-size: 11px; line-height: 1.9; }

/* Card titles — full brightness */
.mn-card__title,
.mn-img-card__title { color: #f0ece0; }

/* Sidebar show cards */
.mn-card__meta { color: #777060; font-size: 11px; }

/* Event detail */
.mn-ev-detail__desc {
  color: #a09878;
  font-size: 13px;
  line-height: 1.7;
}

/* Tier card text */
.mn-tier-card__desc { color: #888070; font-size: 11px; line-height: 1.75; }
.mn-tier-card__perks li { color: #a09878; font-size: 11px; }

/* Hero body */
.mn-hero__body { color: #9a9078; font-size: 15px; line-height: 1.8; }

/* Post meta */
.mn-post__meta { color: #666050; font-size: 11px; }
.mn-post__tag  { color: #888070; }

/* Nav sub */
.mn-nav__sub { color: #666050; }

/* Tier badge */
.mn-tier-card__badge { color: #888070; }

/* Form note on volunteer page */
.mn-volunteer-form-side .mn-form-note { color: #888070; font-size: 11px; }

/* sc-meta in sidebar */
.sc-meta { color: #666050; }

/* Image card date */
.mn-img-card__date { color: #777060; }
.mn-img-card__tag  { color: #666050; }

/* NAV sub tagline — plainer font */
.mn-nav__sub {
  font-family: 'Special Elite', serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #666050;
  text-transform: none;
}

/* =============================================
   VOLUNTEER PAGE — LEFT SIDE
   ============================================= */

.mn-volunteer-info .mn-page-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.mn-volunteer-info h1 {
  font-size: clamp(52px, 7vw, 80px);
  text-shadow: 4px 4px 0 #000;
  margin-bottom: 1.5rem;
  line-height: 0.9;
}

.mn-volunteer-info .gh-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #b0a888;
  margin-bottom: 1.1rem;
}

.mn-vol-roles {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mn-vol-role {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.06em;
  color: #e8e4d8;
  border-left: 3px solid #e8e4d830;
  padding-left: 14px;
  line-height: 1.2;
  transition: border-color 0.2s, color 0.2s;
}

.mn-vol-role:last-child {
  color: #888070;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
}

.mn-volunteer-info .mn-manifesto {
  font-size: 12px;
  line-height: 2;
  color: #666050;
}

@media (max-width: 768px) {
  .mn-vol-role { font-size: 22px; }
}
