/* ─── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --sage:        #5f7e6a;
  --sage-mid:    #7a9e86;
  --sage-light:  #a8c4af;
  --sage-pale:   #ddeee2;
  --sage-wash:   #f0f7f2;
  --terra:       #b87058;
  --terra-light: #d4896e;
  --terra-pale:  #f5e8e2;
  --stone:       #8a8b7e;
  --stone-light: #b8b9ac;
  --stone-pale:  #eeede7;
  --dark:        #1e2520;
  --dark-mid:    #2e3e33;
  --text:        #2c3628;
  --text-muted:  #5a6654;
  --text-faint:  #8a9485;
  --border:      #dcddd4;
  --border-faint:#eeeee8;
  --bg:          #f8f7f2;
  --white:       #ffffff;
  --error:       #c94f3a;
  --error-pale:  #fdf0ee;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); min-height: 100vh; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3 { line-height: 1.15; }
.serif { font-family: 'Cormorant Garamond', serif; }

/* ─── Layout ────────────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding-left: 72px; padding-right: 72px; }

/* ─── Flash ─────────────────────────────────────────────────────────────────── */
.flash { padding: 12px 72px; font-size: 0.875rem; }
.flash--success { background: var(--sage-wash); color: var(--sage); border-bottom: 1px solid var(--sage-pale); }
.flash--error   { background: var(--error-pale); color: var(--error); border-bottom: 1px solid #f5c9c3; }
.flash__inner   { max-width: 1100px; margin: 0 auto; }

/* ─── Announcement Bar ──────────────────────────────────────────────────────── */
.announcement {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.82rem;
}
.announcement strong { color: rgba(255,255,255,0.85); }
.announcement a { color: var(--sage-light); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(168,196,175,0.4); margin-left: 6px; }

/* ─── Navigation ────────────────────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-faint);
  padding: 0 72px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.logo-mark--sm { width: 28px; height: 28px; font-size: 14px; border-radius: 6px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { font-weight: 600; }
.nav-cta { flex-shrink: 0; }
.nav-links__join { display: none; }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  border: none;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--dark    { background: var(--dark); color: #fff; }
.btn--dark:hover { background: var(--dark-mid); }
.btn--sage    { background: var(--sage-wash); border: 1px solid var(--sage-pale); color: var(--sage); }
.btn--sage:hover { background: var(--sage-pale); }
.btn--outline { background: transparent; border: 1.5px solid var(--border); color: var(--text-muted); }
.btn--outline:hover { border-color: var(--sage-light); color: var(--text); }
.btn--white   { background: #fff; color: var(--dark); }
.btn--white:hover { background: var(--bg); }
.btn--ghost-white { border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); background: transparent; }
.btn--ghost-white:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--ghost-danger { background: transparent; border: 1.5px solid #e5d5d2; color: var(--error); font-size: 0.85rem; }
.btn--ghost-danger:hover { border-color: var(--error); }
.btn--full { width: 100%; justify-content: center; }
.link-sage { color: var(--sage); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 5px; border-bottom: 1px solid var(--sage-pale); padding-bottom: 1px; transition: border-color 0.15s; }
.link-sage:hover { border-color: var(--sage); }

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding: 80px 0;
  min-height: calc(100vh - 66px - 38px);
  min-height: calc(100svh - 66px - 38px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-faint);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border-faint) 1px, transparent 1px), linear-gradient(90deg, var(--border-faint) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  pointer-events: none;
}
.hero__corner {
  position: absolute; top: 0; right: 0;
  width: 520px; height: 520px;
  background: radial-gradient(ellipse at top right, var(--sage-pale) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 64px;
  align-items: center;
}
.hero__content {}
.hero__label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-wash); border: 1px solid var(--sage-pale);
  color: var(--sage);
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__label-dot { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; }
.hero__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero__heading-em { color: var(--sage); font-style: italic; }
.hero__sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; max-width: 520px; font-weight: 300; margin-bottom: 36px; }
.hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero__aside { display: flex; flex-direction: column; gap: 14px; }

/* Stat cards in hero */
.stat-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 22px 26px; transition: box-shadow 0.2s; }
.stat-card:hover { box-shadow: 0 4px 20px rgba(95,126,106,0.1); }
.stat-card__num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.stat-card__label { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }
.stat-card__source { font-size: 0.7rem; color: var(--text-faint); margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border-faint); }
.hero-join-card { background: var(--sage); border-radius: 16px; padding: 22px 26px; }
.hero-join-card p { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.55; margin-bottom: 14px; }
.hero-join-card__btn { display: inline-block; background: #fff; color: var(--sage); padding: 9px 18px; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.85rem; transition: background 0.15s; }
.hero-join-card__btn:hover { background: var(--sage-wash); }

/* ─── Marquee ───────────────────────────────────────────────────────────────── */
.marquee-wrap { overflow: hidden; background: var(--dark); padding: 13px 0; }
.marquee-track { display: flex; animation: marquee 28s linear infinite; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; padding: 0 32px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.marquee-dot { width: 5px; height: 5px; background: var(--sage-light); border-radius: 50%; flex-shrink: 0; opacity: 0.45; }

/* ─── Sections ──────────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--white { background: var(--white); border-top: 1px solid var(--border-faint); border-bottom: 1px solid var(--border-faint); }
.section--bg { background: var(--bg); border-top: 1px solid var(--border-faint); }
.section-label {
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage); font-weight: 600; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; display: block; width: 22px; height: 1.5px; background: var(--sage-light); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--dark); line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 10px; }
.section-title em { color: var(--sage); font-style: italic; }
.section-intro { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }
.section-header--split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
.section-header--row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.see-all { font-size: 0.875rem; font-weight: 600; color: var(--sage); display: flex; align-items: center; gap: 5px; border-bottom: 1px solid var(--sage-pale); padding-bottom: 2px; transition: border-color 0.15s; white-space: nowrap; }
.see-all:hover { border-color: var(--sage); }

/* ─── Pillars ───────────────────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.pillar { background: var(--bg); padding: 38px 34px; transition: background 0.15s; }
.pillar:hover { background: var(--sage-wash); }
.pillar__icon { width: 42px; height: 42px; border-radius: 10px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 18px; transition: border-color 0.15s; }
.pillar:hover .pillar__icon { border-color: var(--sage-light); }
.pillar__num { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; color: var(--stone-light); text-transform: uppercase; margin-bottom: 8px; }
.pillar h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.pillar p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

/* ─── Events list ───────────────────────────────────────────────────────────── */
.events-list { display: flex; flex-direction: column; gap: 8px; }
.event-row {
  background: var(--white); border: 1px solid var(--border-faint); border-radius: 12px;
  display: grid; grid-template-columns: 90px 1fr auto;
  align-items: center; gap: 24px; padding: 24px 28px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.event-row:hover { box-shadow: 0 4px 20px rgba(95,126,106,0.08); border-color: var(--sage-pale); }
.event-date-block { text-align: center; background: var(--sage-wash); border: 1px solid var(--sage-pale); border-radius: 10px; padding: 10px 8px; }
.event-date-block__month { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); }
.event-date-block__day { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; color: var(--dark); line-height: 1.1; }
.event-date-block__year { font-size: 0.66rem; color: var(--text-faint); }
.event-info h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 5px; line-height: 1.35; }
.event-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }
.event-meta-right { text-align: right; flex-shrink: 0; }
.event-location { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.event-price { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.76rem; font-weight: 700; }
.event-price--free { background: var(--sage-pale); color: var(--sage); }
.event-price--paid { background: var(--terra-pale); color: var(--terra); }

/* ─── Activity Section: Ticker + Hero Slider ────────────────────────────────── */

/* Ticker bar */
.activity-ticker {
  display: flex;
  align-items: center;
  background: #0c1810;
  height: 42px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.activity-ticker__label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px 0 72px;
  border-right: 1px solid rgba(255,255,255,0.08);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  height: 100%;
  white-space: nowrap;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--sage-light);
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 2.2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.ticker-viewport {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
}
.ticker-scroll {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 28px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  border-right: 1px solid rgba(255,255,255,0.05);
}
.ticker-badge {
  display: inline-block;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(168,196,175,0.14);
  color: rgba(168,196,175,0.75);
}
.ticker-badge--news    { background: rgba(255,200,80,0.12); color: rgba(255,210,100,0.75); }
.ticker-badge--article { background: rgba(160,180,255,0.12); color: rgba(170,190,255,0.75); }

/* Hero slider */
.hero-slider {
  position: relative;
  height: clamp(480px, 70vh, 720px);
  overflow: hidden;
  background: #0f2126;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease;
}
.hero-slide--active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide__bg--event       { background: linear-gradient(145deg, #3a5545 0%, #2e4858 60%, #243a45 100%); }
.hero-slide__bg--news        { background: linear-gradient(145deg, #3e4e30 0%, #4a5e40 50%, #2e4848 100%); }
.hero-slide__bg--article     { background: linear-gradient(145deg, #2e4840 0%, #3e5e52 50%, #283848 100%); }
.hero-slide__bg--inspiration { background: linear-gradient(145deg, #2e4858 0%, #3a5a52 55%, #243848 100%); }
.hero-slide__bg--join        { background: linear-gradient(145deg, #2e4838 0%, #3e5e50 45%, #254050 100%); }

/* Grid texture on gradient slides */
.hero-slide__bg--event::after,
.hero-slide__bg--news::after,
.hero-slide__bg--article::after,
.hero-slide__bg--inspiration::after,
.hero-slide__bg--join::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,196,175,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,196,175,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.75) 100%
  );
}
.hero-slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 72px;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  background: rgba(168,196,175,0.12);
  border: 1px solid rgba(168,196,175,0.22);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.slide-badge::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--sage-light);
  border-radius: 50%;
  flex-shrink: 0;
}
.slide-badge--news        { color: rgba(255,210,100,0.9); background: rgba(255,196,60,0.1);  border-color: rgba(255,196,60,0.22);  }
.slide-badge--news::before        { background: rgba(255,210,100,0.9); }
.slide-badge--article     { color: rgba(170,195,255,0.9); background: rgba(150,175,255,0.1); border-color: rgba(150,175,255,0.22); }
.slide-badge--article::before     { background: rgba(170,195,255,0.9); }
.slide-badge--inspiration { color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.slide-badge--inspiration::before { background: rgba(255,255,255,0.4); }
.slide-badge--join        { color: rgba(168,196,175,0.9); background: rgba(168,196,175,0.12); border-color: rgba(168,196,175,0.25); }
.slide-badge--join::before        { background: rgba(168,196,175,0.9); }
.slide-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  max-width: 760px;
}
.slide-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.68;
  max-width: 560px;
  margin-bottom: 20px;
  font-weight: 300;
}
.slide-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
}
.slide-meta-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.slide-meta-item--free {
  color: var(--sage-light);
  font-weight: 600;
}
.slide-meta-item + .slide-meta-item::before {
  content: '·';
  margin-right: 18px;
  opacity: 0.4;
}
.slide-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.slide-cta {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.slide-cta:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.38);
  color: #fff;
}
.slide-cta--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.55);
}
.slide-cta--ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.8);
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 26px;
  right: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}
.slider-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.25s, border-radius 0.25s;
}
.slider-dot--active {
  background: rgba(255,255,255,0.88);
  width: 22px;
  border-radius: 4px;
}
.slider-arrows { display: flex; gap: 7px; }
.slider-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}
.slider-arrow:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* ─── Newsletter split ──────────────────────────────────────────────────────── */
.newsletter-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.newsletter-lead { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.feature-check { width: 20px; height: 20px; border-radius: 50%; background: var(--sage-pale); border: 1px solid var(--sage-light); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; color: var(--sage); flex-shrink: 0; font-weight: 700; }
.subscribe-box { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.subscribe-box h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--dark); margin-bottom: 6px; }
.subscribe-box p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.subscribe-note { font-size: 0.74rem; color: var(--text-faint); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ─── Journal ────────────────────────────────────────────────────────────────── */

.journal-filter-bar { background: var(--white); border-bottom: 1px solid var(--border-faint); padding: 14px 0; position: sticky; top: 66px; z-index: 90; }

/* Type badges */
.jbadge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 100px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.jbadge--article  { background: var(--sage-wash);  color: var(--sage); border: 1px solid var(--sage-pale); }
.jbadge--news     { background: #fef9ee; color: #8a6200; border: 1px solid #f0dfa0; }
.jbadge--petition { background: #fef4ee; color: #8a3800; border: 1px solid #f0c8a0; }
.journal-meta-sep { color: var(--border); margin: 0 6px; }

/* Featured card */
.journal-featured { background: var(--white); padding: 40px 0 0; }
.journal-featured__card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border-faint); box-shadow: 0 2px 16px rgba(0,0,0,0.05); text-decoration: none; color: inherit; transition: box-shadow 0.2s; }
.journal-featured__card:hover { box-shadow: 0 4px 28px rgba(0,0,0,0.1); }
.journal-featured__img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.journal-featured__img--gradient { }
.journal-featured__img--article  { background: linear-gradient(145deg, #2e4838 0%, #3e5e50 50%, #254050 100%); }
.journal-featured__img--news     { background: linear-gradient(145deg, #3e4e30 0%, #4a5e40 50%, #2e4848 100%); }
.journal-featured__img--petition { background: linear-gradient(145deg, #4e3820 0%, #5e4830 50%, #3a2818 100%); }
.journal-featured__body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.journal-featured__meta { display: flex; align-items: center; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; gap: 4px; }
.journal-featured__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 600; color: var(--dark); line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 14px; }
.journal-featured__excerpt { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin-bottom: 24px; }
.journal-featured__cta { font-size: 0.85rem; font-weight: 600; color: var(--sage); }

/* Journal grid */
.journal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding-top: 32px; }
.journal-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--border-faint); background: var(--white); transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.journal-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.09); transform: translateY(-2px); }
.journal-card--highlight { outline: 2px solid var(--sage-light); outline-offset: 2px; }
.journal-card__img-link { display: block; }
.journal-card__img { height: 180px; background-size: cover; background-position: center; }
.journal-card__img--gradient { }
.journal-card__img--article  { background: linear-gradient(145deg, #2e4838 0%, #3e5e50 50%, #254050 100%); }
.journal-card__img--news     { background: linear-gradient(145deg, #3e4e30 0%, #4a5e40 50%, #2e4848 100%); }
.journal-card__img--petition { background: linear-gradient(145deg, #4e3820 0%, #5e4830 50%, #3a2818 100%); }
.journal-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.journal-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.journal-card__date { font-size: 0.75rem; color: var(--text-faint); }
.journal-card__title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--dark); line-height: 1.3; margin-bottom: 3px; min-height: 4.05rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.journal-card__title a { text-decoration: none; color: inherit; }
.journal-card__title a:hover { color: var(--sage); }
.journal-source-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; font-weight: 600; color: var(--text-muted); background: var(--bg); border: 1px solid var(--border-faint); padding: 2px 9px; border-radius: 100px; letter-spacing: 0.03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }
.journal-source-chip::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--sage-light); flex-shrink: 0; }
.journal-source-chip--meta { margin-left: auto; }
.journal-card__excerpt { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.journal-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.journal-tag { background: var(--sage-wash); color: var(--sage); border: 1px solid var(--sage-pale); padding: 2px 9px; border-radius: 100px; font-size: 0.67rem; font-weight: 600; letter-spacing: 0.06em; }
.journal-card__footer { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.journal-card__read { font-size: 0.82rem; font-weight: 600; color: var(--sage); text-decoration: none; }
.journal-card__read:hover { color: var(--dark); }
.journal-card__read--petition { color: #8a3800; }
.journal-card__read--secondary { font-size: 0.78rem; color: var(--text-faint); text-decoration: none; }

/* ─── Article page ───────────────────────────────────────────────── */

.article-hero { height: 380px; background-size: cover; background-position: center; position: relative; }
.article-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.45) 100%); }
.article-wrap { background: var(--white); }
.article-container { display: grid; grid-template-columns: 1fr 300px; gap: 64px; padding-top: 48px; padding-bottom: 80px; align-items: start; }
.article-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-faint); margin-bottom: 28px; }
.article-breadcrumb a { color: var(--text-faint); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--sage); }
.article-header { margin-bottom: 40px; }
.article-header__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.article-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--dark); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 16px; }
.article-excerpt { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; max-width: 660px; margin-bottom: 16px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* Prose / markdown body */
.prose { font-size: 1rem; line-height: 1.85; color: var(--text); font-weight: 300; max-width: 720px; }
.prose h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 600; color: var(--dark); margin: 2.2em 0 0.6em; line-height: 1.2; }
.prose h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin: 1.8em 0 0.5em; }
.prose p { margin: 0 0 1.4em; }
.prose ul, .prose ol { padding-left: 1.6em; margin: 0 0 1.4em; }
.prose li { margin-bottom: 0.4em; }
.prose blockquote { border-left: 3px solid var(--sage-light); padding: 2px 0 2px 20px; margin: 1.8em 0; color: var(--text-muted); font-style: italic; }
.prose strong { font-weight: 600; color: var(--dark); }
.prose a { color: var(--sage); text-decoration: underline; text-decoration-color: var(--sage-pale); }
.prose a:hover { color: var(--dark); }
.prose code { font-family: monospace; font-size: 0.88em; background: var(--sage-wash); padding: 2px 6px; border-radius: 4px; }
.prose pre { background: var(--dark); color: #e8e8e0; padding: 20px 24px; border-radius: 10px; overflow-x: auto; margin: 1.8em 0; }
.prose pre code { background: none; padding: 0; color: inherit; }
.prose hr { border: none; border-top: 1px solid var(--border-faint); margin: 2.5em 0; }
.prose img { max-width: 100%; border-radius: 8px; margin: 1em 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.8em 0; font-size: 0.9rem; }
.prose th { background: var(--sage-wash); font-weight: 700; padding: 10px 14px; text-align: left; border: 1px solid var(--border); }
.prose td { padding: 9px 14px; border: 1px solid var(--border-faint); }

.article-source { font-size: 0.78rem; color: var(--text-faint); margin: 32px 0 0; padding-top: 20px; border-top: 1px solid var(--border-faint); }
.article-source a { color: var(--sage); word-break: break-all; }
.article-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-faint); }
.article-back { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; }
.article-back:hover { color: var(--sage); }

.article-sidebar { position: sticky; top: 90px; align-self: start; }
.article-sidebar__inner { display: flex; flex-direction: column; gap: 20px; }
.article-sidebar__section { background: var(--bg); border: 1px solid var(--border-faint); border-radius: 12px; padding: 22px; }
.article-sidebar__section h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--dark); margin-bottom: 8px; }
.article-sidebar__section p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

.article-related { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.article-related__item { display: flex; gap: 12px; text-decoration: none; color: inherit; }
.article-related__img { width: 54px; height: 54px; border-radius: 7px; background-size: cover; background-position: center; flex-shrink: 0; }
.article-related__body { display: flex; flex-direction: column; gap: 4px; }
.article-related__title { font-size: 0.82rem; color: var(--text); line-height: 1.45; font-weight: 500; }
.article-related__item:hover .article-related__title { color: var(--sage); }

/* ─── Admin article editor layout ───────────────────────── */

.ae-type-picker { margin-bottom: 24px; }
.ae-type-picker__label { font-size: 0.78rem; font-weight: 700; color: var(--text-faint, #8a9485); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.ae-type-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ae-type-btn { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 16px; border-radius: 10px; border: 2px solid var(--admin-border, #e0e0d8); background: var(--admin-bg, #f9f8f4); cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.ae-type-btn input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.ae-type-btn:hover { border-color: var(--sage-light, #a8c4af); background: #fff; }
.ae-type-btn--active { border-color: var(--sage, #5f7e6a); background: #fff; box-shadow: 0 0 0 3px rgba(95,126,106,0.1); }
.ae-type-btn__icon { font-size: 1.1rem; margin-bottom: 2px; }
.ae-type-btn__name { font-size: 0.85rem; font-weight: 700; color: var(--text, #2c3628); }
.ae-type-btn--active .ae-type-btn__name { color: var(--sage, #5f7e6a); }
.ae-type-btn__desc { font-size: 0.73rem; color: var(--text-faint, #8a9485); line-height: 1.4; font-weight: 400; }

.article-editor-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; }
.article-editor-main { display: flex; flex-direction: column; gap: 18px; }
.article-editor-sidebar { position: sticky; top: 80px; align-self: start; display: flex; flex-direction: column; gap: 16px; }
.slug-row { display: flex; align-items: center; border: 1px solid var(--admin-border, #e0e0d8); border-radius: 7px; overflow: hidden; background: var(--admin-bg, #f9f8f4); }
.slug-prefix { padding: 8px 10px; font-size: 0.82rem; color: var(--text-faint, #8a9485); border-right: 1px solid var(--admin-border, #e0e0d8); flex-shrink: 0; white-space: nowrap; }
.slug-row input { border: none; background: none; padding: 8px 10px; }
.admin-checkbox-label { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; font-size: 0.85rem; font-weight: 600; color: var(--text, #2c3628); }
.admin-checkbox-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--dark); padding: 64px 0; color: rgba(255,255,255,0.45); }
.footer__inner { max-width: 1100px; margin: 0 auto; padding: 0 72px; }
.footer__top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer__tagline { font-size: 0.875rem; line-height: 1.65; max-width: 220px; margin-bottom: 16px; }
.footer__nfp { display: inline-flex; align-items: center; gap: 6px; background: rgba(95,126,106,0.15); border: 1px solid rgba(95,126,106,0.25); color: var(--sage-light); padding: 5px 12px; border-radius: 100px; font-size: 0.76rem; font-weight: 500; }
.footer__col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.76rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: rgba(255,255,255,0.38); font-size: 0.875rem; transition: color 0.15s; }
.footer__col a:hover { color: rgba(255,255,255,0.7); }
.footer__bottom { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; }
.footer__bottom a { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.82rem; color: var(--sage-light); opacity: 0.5; transition: color 0.15s; }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }
.footer__domain { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.82rem; color: var(--sage-light); opacity: 0.5; }
.footer__bottom-right { display: flex; align-items: center; gap: 16px; }
.footer__instagram { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; }
.footer__instagram:hover { color: rgba(255,255,255,0.65); }

/* ─── Community gate ─────────────────────────────────────────────────────────── */

.community-gate { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; padding: 20px 0 60px; }
.community-gate__heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--dark); line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 16px; }
.community-gate__lead { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; margin-bottom: 24px; max-width: 480px; }
.community-gate__benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.community-gate__benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--text); line-height: 1.55; }
.community-gate__check { width: 20px; height: 20px; border-radius: 50%; background: var(--sage-wash); border: 1px solid var(--sage-pale); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; color: var(--sage); flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.community-gate__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.community-gate__login { font-size: 0.83rem; color: var(--text-faint); }
.community-gate__login a { color: var(--sage); font-weight: 500; }

.community-gate__right { position: sticky; top: 90px; }
.community-gate__preview { position: relative; border: 1px solid var(--border-faint); border-radius: 14px; overflow: hidden; background: var(--white); padding: 20px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.community-gate__preview-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.community-gate__ghost-card { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-faint); }
.community-gate__ghost-card:last-of-type { border-bottom: none; }
.community-gate__ghost-avatar { width: 38px; height: 38px; border-radius: 9px; background: var(--border-faint); flex-shrink: 0; }
.community-gate__ghost-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.community-gate__ghost-line { height: 9px; border-radius: 4px; background: var(--border-faint); }
.community-gate__ghost-line--name { width: 55%; }
.community-gate__ghost-line--meta { width: 38%; }
.community-gate__ghost-line--tag  { width: 28%; }
.community-gate__preview-blur { position: absolute; bottom: 0; left: 0; right: 0; height: 180px; background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.92) 55%, var(--white) 100%); }
.community-gate__preview-cta { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: center; }

/* ─── Page header (community, etc.) ────────────────────────────────────────── */
.page-header { background: var(--white); border-bottom: 1px solid var(--border-faint); padding: 48px 0 40px; }
.page-header__title { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.1; letter-spacing: -0.01em; }
.page-header__sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; max-width: 540px; font-weight: 300; margin-bottom: 22px; }
.about-header { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.about-header__text { flex: 1; }
.about-header__logo { flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 24px 32px; }
.about-header__logo-img { width: 100px; height: auto; opacity: 0.92; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-faint); margin-bottom: 16px; }
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { text-decoration: underline; }
.community-stats { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.community-stat { font-size: 0.82rem; color: var(--text-muted); }
.community-stat strong { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--dark); }
.community-stat-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

/* ─── Filters bar ───────────────────────────────────────────────────────────── */
.filters-bar { background: var(--white); border-bottom: 1px solid var(--border-faint); padding: 14px 0; position: sticky; top: 66px; z-index: 90; }
.filters-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.filter-tabs { display: flex; gap: 2px; background: var(--bg); border: 1px solid var(--border-faint); border-radius: 10px; padding: 3px; }
.filter-tab { padding: 6px 16px; border-radius: 8px; font-size: 0.82rem; font-weight: 500; color: var(--text-muted); cursor: pointer; transition: all 0.15s; white-space: nowrap; border: none; background: none; font-family: inherit; }
.filter-tab--active { background: var(--white); color: var(--dark); font-weight: 600; box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
.filters-search { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.search-input { padding: 7px 14px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--bg); font-family: inherit; font-size: 0.85rem; color: var(--text); outline: none; width: 200px; transition: border-color 0.15s, background 0.15s; }
.search-input:focus { border-color: var(--sage); background: var(--white); }
.search-input::placeholder { color: var(--text-faint); }
.filter-clear { font-size: 0.78rem; color: var(--text-faint); font-weight: 500; }
.filter-clear:hover { color: var(--text); }

/* ─── Community profile cards ───────────────────────────────────────────────── */
.profiles-section { margin-bottom: 56px; }
.profiles-section__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.profiles-section__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.count-badge { background: var(--stone-pale); color: var(--stone); padding: 2px 9px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; }
.profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.profile-card {
  background: var(--white); border: 1px solid var(--border-faint); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer; color: inherit;
}
.profile-card:hover { box-shadow: 0 6px 28px rgba(95,126,106,0.1); border-color: var(--sage-pale); transform: translateY(-2px); }
.profile-card__top { padding: 22px 22px 16px; flex: 1; }
.profile-card__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.profile-card__meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.profile-card__url { font-size: 0.78rem; color: var(--sage); margin-bottom: 8px; }
.profile-card__bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.profile-card__tags { display: flex; flex-wrap: wrap; gap: 4px; }
.profile-card__footer { padding: 12px 22px; border-top: 1px solid var(--border-faint); display: flex; align-items: center; justify-content: space-between; }
.profile-avatar { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.avatar--sage  { background: var(--sage-pale); color: var(--sage); }
.avatar--terra { background: var(--terra-pale); color: var(--terra); }
.avatar--stone { background: var(--stone-pale); color: var(--stone); }
.avatar--dark  { background: rgba(30,37,32,0.08); color: var(--dark); }
.org-logo { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 12px; }
.tag-pill { background: var(--sage-wash); color: var(--sage); border: 1px solid var(--sage-pale); padding: 3px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 500; }
.tag-pill--stone { background: var(--stone-pale); color: var(--stone); border-color: transparent; }
.member-type-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.member-type-badge--individual { color: var(--sage); }
.member-type-badge--business   { color: var(--terra); }
.view-link { font-size: 0.78rem; font-weight: 600; color: var(--sage); }
.org-type-badge { display: inline-flex; align-items: center; background: var(--terra-pale); color: var(--terra); padding: 3px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; margin-bottom: 8px; }
.org-type-badge--ngo      { background: var(--sage-wash); color: var(--sage); }
.org-type-badge--research { background: var(--stone-pale); color: var(--stone); }
.empty-state { font-size: 0.9rem; color: var(--text-faint); padding: 32px 0; }

/* ─── Join banner ───────────────────────────────────────────────────────────── */
.join-banner { background: var(--dark); border-radius: 20px; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.join-banner__text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.join-banner__text h3 em { color: var(--sage-light); font-style: italic; }
.join-banner__text p { font-size: 0.88rem; color: rgba(255,255,255,0.5); max-width: 400px; line-height: 1.6; }
.join-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ─── Profile pages ─────────────────────────────────────────────────────────── */
.profile-header { background: var(--white); border-bottom: 1px solid var(--border-faint); padding: 48px 0; }
.profile-hero { display: flex; align-items: flex-start; gap: 28px; }
.profile-avatar-lg { width: 76px; height: 76px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.5rem; flex-shrink: 0; }
.org-logo-lg { width: 84px; height: 84px; border-radius: 18px; border: 1px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.profile-badges { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: 100px; font-size: 0.73rem; font-weight: 600; }
.badge--individual { background: var(--sage-wash); color: var(--sage); border: 1px solid var(--sage-pale); }
.badge--business   { background: var(--stone-pale); color: var(--stone); }
.badge--type       { background: var(--terra-pale); color: var(--terra); }
.badge--public     { background: var(--sage-wash); color: var(--sage); border: 1px solid var(--sage-pale); }
.profile-name { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; color: var(--dark); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 10px; }
.profile-meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.85rem; color: var(--text-muted); }
.profile-bio-text { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 580px; font-weight: 300; margin-bottom: 18px; }
.profile-socials { display: flex; gap: 8px; }
.social-link { display: inline-flex; align-items: center; gap: 6px; background: var(--bg); border: 1px solid var(--border-faint); color: var(--text-muted); padding: 6px 13px; border-radius: 100px; font-size: 0.8rem; font-weight: 500; transition: all 0.15s; }
.social-link:hover { border-color: var(--sage-light); color: var(--sage); }
.activities-row { display: flex; flex-wrap: wrap; gap: 7px; }
.activity-pill { background: var(--bg); border: 1px solid var(--border); color: var(--text-muted); padding: 5px 13px; border-radius: 100px; font-size: 0.8rem; font-weight: 500; }
.activity-pill--sage { background: var(--sage-wash); color: var(--sage); border-color: var(--sage-pale); }
.profile-body { display: grid; grid-template-columns: 1fr 270px; gap: 36px; align-items: start; padding-top: 44px; padding-bottom: 60px; }
.profile-main-col {}
.profile-sidebar {}
.content-card { background: var(--white); border: 1px solid var(--border-faint); border-radius: 16px; padding: 28px; margin-bottom: 16px; }
.content-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--dark); margin-bottom: 16px; }
.content-card__body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }
.interests-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-pill { background: var(--sage-wash); color: var(--sage); border: 1px solid var(--sage-pale); padding: 6px 15px; border-radius: 100px; font-size: 0.82rem; font-weight: 500; text-transform: capitalize; }
.activities-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border-faint); border-radius: 14px; padding: 22px; margin-bottom: 14px; }
.sidebar-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.875rem; color: var(--dark); margin-bottom: 14px; }
.sidebar-card__text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.info-row { display: flex; align-items: flex-start; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-faint); font-size: 0.82rem; gap: 10px; }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-label { color: var(--text-faint); flex-shrink: 0; }
.info-value { color: var(--text); text-align: right; }
.sidebar-item { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border-faint); font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-item__icon { flex-shrink: 0; margin-top: 1px; }
.sidebar-item strong { color: var(--text); font-weight: 600; }

/* ─── Split page (join) ─────────────────────────────────────────────────────── */
.split-page { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 66px); }
.split-page__left { background: var(--dark-mid); padding: 64px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.split-page__left::before { content: ''; position: absolute; top: -80px; right: -60px; width: 380px; height: 380px; background: radial-gradient(ellipse, rgba(95,126,106,0.18) 0%, transparent 65%); pointer-events: none; }
.split-page__left::after { content: ''; position: absolute; bottom: -60px; left: 40px; width: 260px; height: 260px; background: radial-gradient(ellipse, rgba(184,112,88,0.1) 0%, transparent 65%); pointer-events: none; }
.split-panel__top { position: relative; z-index: 2; }
.split-panel__eyebrow { font-size: 0.73rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-light); font-weight: 600; margin-bottom: 16px; opacity: 0.7; }
.split-panel__title { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: #fff; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 16px; }
.split-panel__title em { color: var(--sage-light); font-style: italic; }
.split-panel__sub { font-size: 0.92rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 320px; font-weight: 300; }
.split-panel__stats { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 16px; }
.split-stat { display: flex; align-items: flex-start; gap: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 16px 18px; }
.split-stat__icon { font-size: 1.3rem; flex-shrink: 0; }
.split-stat__label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--sage-light); margin-bottom: 3px; }
.split-stat__desc { font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.45; }
.split-page__right { background: var(--bg); padding: 64px; display: flex; flex-direction: column; justify-content: center; }
.form-panel { max-width: 440px; }
.form-panel__title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; line-height: 1.2; }
.form-panel__sub { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; font-weight: 300; }

/* Progress bar */
.progress-bar { background: var(--white); border-bottom: 1px solid var(--border-faint); padding: 14px 72px; }
.progress-steps { display: flex; align-items: center; max-width: 560px; }
.step { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; }
.step__num { width: 23px; height: 23px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.step--done .step__num   { background: var(--sage); color: #fff; }
.step--active .step__num { background: var(--dark); color: #fff; }
.step--pending .step__num { background: var(--border-faint); color: var(--text-faint); }
.step--done .step__label   { color: var(--sage); font-weight: 500; }
.step--active .step__label { color: var(--dark); font-weight: 600; }
.step--pending .step__label { color: var(--text-faint); }
.step-connector { flex: 1; height: 1px; background: var(--border); margin: 0 10px; min-width: 16px; }
.step-connector--done { background: var(--sage-light); }

/* Type selection cards */
.type-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.type-card { border: 2px solid var(--border); border-radius: 14px; background: var(--white); padding: 22px 22px 22px 20px; cursor: pointer; transition: all 0.18s; display: flex; align-items: flex-start; gap: 16px; position: relative; }
.type-card:hover { border-color: var(--sage-light); box-shadow: 0 4px 20px rgba(95,126,106,0.1); }
.type-card__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--stone-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: background 0.15s; }
.type-card:hover .type-card__icon { background: var(--sage-pale); }
.type-card__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 5px; }
.type-card__desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 8px; }
.type-card__tags { display: flex; flex-wrap: wrap; gap: 4px; }
.type-card__tags span { background: var(--bg); border: 1px solid var(--border-faint); color: var(--text-faint); padding: 2px 9px; border-radius: 100px; font-size: 0.7rem; }
.type-card__arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 7px; background: var(--border-faint); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; color: var(--text-faint); transition: all 0.15s; }
.type-card:hover .type-card__arrow { background: var(--sage-pale); color: var(--sage); }

/* Privacy preview */
.privacy-preview { background: var(--white); border: 1px solid var(--border-faint); border-radius: 11px; padding: 16px 18px; margin-bottom: 22px; }
.privacy-preview__title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 10px; }
.privacy-option { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border-faint); }
.privacy-option:last-child { border-bottom: none; padding-bottom: 0; }
.privacy-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.privacy-dot--public  { background: var(--sage); }
.privacy-dot--private { background: var(--stone-light); }
.privacy-option__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.82rem; color: var(--dark); margin-bottom: 2px; }
.privacy-option__desc { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }

/* ─── Registration form layout ───────────────────────────────────────────────── */
.reg-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding-top: 48px; padding-bottom: 64px; }
.reg-form {}
.reg-sidebar { position: sticky; top: 82px; align-self: start; }
.form-section { background: var(--white); border: 1px solid var(--border-faint); border-radius: 14px; padding: 30px; margin-bottom: 16px; }
.form-section__header { margin-bottom: 24px; }
.form-section__num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 5px; }
.form-section__title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.form-section__sub { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Fields */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.field--full { grid-column: 1 / -1; }
.field:last-child { margin-bottom: 0; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 6px; }
.req-star { color: var(--terra); font-size: 0.72rem; }
.field-optional { background: var(--stone-pale); color: var(--stone); padding: 1px 7px; border-radius: 100px; font-size: 0.67rem; font-weight: 500; }
.field input, .field select, .field textarea {
  padding: 10px 13px; border-radius: 8px; border: 1.5px solid var(--border);
  background: var(--bg); font-family: inherit; font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage); background: var(--white); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field textarea { resize: vertical; min-height: 88px; line-height: 1.6; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--error); }
.field-error { font-size: 0.75rem; color: var(--error); }
.field-hint { font-size: 0.74rem; color: var(--text-faint); line-height: 1.4; }
.char-count { font-size: 0.71rem; color: var(--text-faint); text-align: right; margin-top: 3px; }
.location-row { display: grid; grid-template-columns: 1fr 150px; gap: 10px; }
.url-input-row { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--bg); transition: border-color 0.15s; }
.url-input-row:focus-within { border-color: var(--sage); }
.url-prefix { padding: 10px 12px; font-size: 0.8rem; color: var(--text-faint); background: var(--stone-pale); border-right: 1px solid var(--border); white-space: nowrap; }
.url-input-row input { flex: 1; padding: 10px 13px; border: none; background: transparent; font-family: inherit; font-size: 0.9rem; color: var(--text); outline: none; }
.social-input-row { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--bg); transition: border-color 0.15s; }
.social-input-row:focus-within { border-color: var(--sage); }
.social-prefix { padding: 10px 10px; font-size: 0.78rem; color: var(--text-faint); background: var(--stone-pale); border-right: 1px solid var(--border); white-space: nowrap; }
.social-input-row input { flex: 1; padding: 10px 13px; border: none; background: transparent; font-family: inherit; font-size: 0.9rem; color: var(--text); outline: none; }

/* Tag checkboxes */
.tag-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-check {
  display: flex; align-items: center; gap: 5px;
  background: var(--bg); border: 1.5px solid var(--border-faint);
  color: var(--text-muted); padding: 6px 13px; border-radius: 100px;
  font-size: 0.81rem; cursor: pointer; transition: all 0.14s; user-select: none;
}
.tag-check input { display: none; }
.tag-check:hover { border-color: var(--sage-light); color: var(--text); }
.tag-check--checked { border-color: var(--sage); color: var(--sage); background: var(--sage-wash); font-weight: 500; }
.tag-check--checked::before { content: '✓ '; font-size: 0.7rem; }

/* Org type grid */
.org-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.org-type-card { border: 1.5px solid var(--border-faint); border-radius: 10px; padding: 12px 8px; cursor: pointer; transition: all 0.15s; display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
.org-type-card input { display: none; }
.org-type-card:hover { border-color: var(--sage-light); background: var(--sage-wash); }
.org-type-card--selected { border-color: var(--sage); background: var(--sage-wash); }
.org-type-card__icon { font-size: 1.2rem; }
.org-type-card__label { font-size: 0.75rem; font-weight: 600; color: var(--text); }

/* Visibility cards */
.vis-cards { display: flex; gap: 12px; }
.vis-card { flex: 1; border: 2px solid var(--border); border-radius: 12px; padding: 18px; cursor: pointer; transition: all 0.18s; position: relative; }
.vis-card input[type=radio] { position: absolute; top: 12px; right: 12px; accent-color: var(--sage); width: 15px; height: 15px; }
.vis-card:hover { border-color: var(--sage-light); background: var(--sage-wash); }
.vis-card--selected { border-color: var(--sage); background: var(--sage-wash); }
.vis-card__icon { font-size: 1.4rem; margin-bottom: 8px; display: block; }
.vis-card__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--dark); margin-bottom: 5px; }
.vis-card__desc { font-size: 0.77rem; color: var(--text-muted); line-height: 1.5; }
.vis-card__shows { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border-faint); }
.vis-card__shows-title { font-size: 0.68rem; font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
.vis-tag { display: inline-flex; align-items: center; background: var(--white); border: 1px solid var(--border-faint); padding: 2px 7px; border-radius: 100px; font-size: 0.68rem; color: var(--text-muted); margin: 2px 2px 2px 0; }
.vis-tag--shown { color: var(--sage); border-color: var(--sage-pale); }
.vis-tag--hidden { color: var(--stone-light); text-decoration: line-through; opacity: 0.6; }

/* Contact notice */
.contact-notice { background: var(--terra-pale); border: 1px solid rgba(184,112,88,0.18); border-radius: 9px; padding: 12px 14px; display: flex; align-items: flex-start; gap: 9px; font-size: 0.81rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
.contact-notice strong { color: var(--terra); font-weight: 600; }

/* Submit box */
.form-submit-box { background: var(--white); border: 1px solid var(--border-faint); border-radius: 14px; padding: 24px 28px; }
.form-footer-note { font-size: 0.82rem; color: var(--text-faint); text-align: center; margin-top: 16px; }

/* Step label */
.step-label { display: inline-flex; align-items: center; gap: 6px; background: var(--sage-wash); border: 1px solid var(--sage-pale); color: var(--sage); padding: 4px 11px; border-radius: 100px; font-size: 0.73rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }

/* ─── Centered pages (confirm, success, error) ───────────────────────────────── */
.centered-page { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 66px); padding: 48px 24px; }
.centered-card { background: var(--white); border: 1px solid var(--border-faint); border-radius: 20px; padding: 48px; max-width: 480px; width: 100%; text-align: center; }
.centered-card__icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.centered-card__title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.centered-card__sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.centered-card__body { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.centered-card__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.centered-card__note { font-size: 0.8rem; color: var(--text-faint); }

/* ─── Nav toggle (hidden on desktop) ───────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px 4px;
  cursor: pointer;
  z-index: 101;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle--open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle--open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Tablet (≤1024px) ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container        { padding-left: 32px; padding-right: 32px; }
  .flash            { padding-left: 32px; padding-right: 32px; }
  .site-nav         { padding-left: 32px; padding-right: 32px; }
  .footer__inner    { padding-left: 32px; padding-right: 32px; }
  .progress-bar     { padding-left: 32px; padding-right: 32px; }
  .community-gate        { grid-template-columns: 1fr; gap: 36px; }
  .community-gate__right { position: static; }
  .journal-featured__card { grid-template-columns: 1fr; }
  .journal-featured__img  { aspect-ratio: 16/7; }
  .journal-grid           { grid-template-columns: repeat(2, 1fr); }
  .article-container      { grid-template-columns: 1fr; }
  .article-sidebar        { position: static; }
  .article-editor-layout  { grid-template-columns: 1fr; }
  .article-editor-sidebar { position: static; }

  .hero__inner      { grid-template-columns: 3fr 2fr; gap: 40px; }
  .profiles-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer__top      { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
  .reg-layout       { grid-template-columns: 1fr; }
  .reg-sidebar      { display: none; }
  .section-header--split { grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; }

  .pillars { grid-template-columns: repeat(2, 1fr); }

  .activity-ticker__label { padding-left: 32px; }
  .slider-controls        { right: 32px; }
  .hero-slide__content    { padding-bottom: 72px; }
}

/* ─── Mobile (≤768px) ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Spacing */
  .container     { padding-left: 20px; padding-right: 20px; }
  .flash         { padding: 12px 20px; }
  .site-nav      { padding: 0 20px; }
  .footer__inner { padding: 0 20px; }
  .journal-grid  { grid-template-columns: 1fr; }
  .journal-featured__body { padding: 24px; }
  .article-hero  { height: 220px; }
  .article-title { font-size: 1.8rem; }
  .progress-bar  { padding: 12px 20px; }
  .section       { padding: 52px 0; }

  /* Nav — hamburger menu */
  .nav-toggle { display: flex; }
  .nav-cta    { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-faint);
    padding: 0 20px 20px;
    flex-direction: column;
    gap: 0;
    z-index: 99;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }
  .nav-links--open  { display: flex; }
  .nav-links li     { border-bottom: 1px solid var(--border-faint); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a      { display: block; padding: 14px 0; font-size: 1rem; color: var(--text); }
  .nav-links a.active { font-weight: 700; color: var(--dark); }
  .nav-links__join { display: block; border-bottom: none !important; padding-top: 16px; }
  .nav-links__join a { border-bottom: none !important; padding: 0 !important; display: block; }

  /* Hero */
  .hero            { padding: 52px 0 44px; }
  .hero__inner     { grid-template-columns: 1fr; }
  .hero__aside     { display: none; }

  /* Section headers */
  .section-header--split { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .section-header--row   { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 24px; }

  /* Pillars */
  .pillars { grid-template-columns: 1fr; }
  .pillar  { padding: 28px 22px; }

  /* Events */
  .event-row           { grid-template-columns: 64px 1fr; gap: 14px; padding: 16px 18px; }
  .event-meta-right    { display: none; }

  /* Activity slider */
  .activity-ticker__label { padding-left: 20px; padding-right: 16px; }
  .slide-sub              { display: none; }
  .slide-meta             { gap: 10px; margin-bottom: 18px; }
  .slider-controls        { right: 20px; bottom: 18px; }
  .slider-arrow           { width: 32px; height: 32px; font-size: 1.3rem; }

  /* Newsletter */
  .newsletter-split { grid-template-columns: 1fr; gap: 28px; }

  /* Footer */
  .site-footer        { padding: 40px 0 32px; }
  .footer__top        { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom     { flex-direction: column; gap: 10px; text-align: center; }

  /* Filters bar */
  .filters-bar        { position: static; }
  .filters-inner      { flex-direction: column; align-items: stretch; gap: 10px; }
  .filters-search     { margin-left: 0; }
  .search-input       { width: 100%; }

  /* Profiles grid */
  .profiles-grid { grid-template-columns: 1fr; }

  /* Join banner */
  .join-banner         { flex-direction: column; padding: 28px 22px; gap: 20px; border-radius: 14px; }
  .join-banner__text p { max-width: none; }
  .join-banner__actions        { flex-direction: column; width: 100%; }
  .join-banner__actions .btn   { width: 100%; justify-content: center; }

  /* Profile pages */
  .profile-header  { padding: 32px 0; }
  .profile-hero    { gap: 16px; }
  .profile-name    { font-size: 1.9rem; }
  .profile-body    { grid-template-columns: 1fr; padding-top: 28px; padding-bottom: 36px; }
  .page-header     { padding: 28px 0 24px; }
  .page-header__title { font-size: 2rem; }
  .about-header__logo { display: none; }

  /* Split-page join */
  .split-page           { grid-template-columns: 1fr; min-height: auto; }
  .split-page__left     { display: none; }
  .split-page__right    { padding: 32px 20px 48px; justify-content: flex-start; }
  .form-panel           { max-width: none; }

  /* Registration form */
  .reg-layout    { padding-top: 24px; padding-bottom: 40px; }
  .reg-sidebar   { display: none; }
  .form-section  { padding: 22px 18px; }
  .field-row     { grid-template-columns: 1fr; }
  .location-row  { grid-template-columns: 1fr; }
  .org-type-grid { grid-template-columns: repeat(2, 1fr); }
  .vis-cards     { flex-direction: column; }

  /* Centered cards */
  .centered-card       { padding: 28px 20px; border-radius: 16px; }
  .centered-card__title { font-size: 1.6rem; }
  .centered-page       { padding: 32px 16px; align-items: flex-start; }

  /* Learn grid */
  .learn-grid { grid-template-columns: 1fr; }

  /* Glossary */
  .glossary-bar__inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .alpha-nav { flex-wrap: wrap; gap: 4px; }
  .alpha-nav__link { min-width: 28px; }
  .glossary-entries { grid-template-columns: 1fr; }
  .glossary-entry { padding: 18px; }
}

/* ─── Learn page ────────────────────────────────────────────────────────────── */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.learn-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  gap: 0;
}
.learn-card:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 20px rgba(66,97,97,0.12);
  transform: translateY(-2px);
  color: var(--text);
}
.learn-card--soon {
  opacity: 0.6;
  pointer-events: none;
}
.learn-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.learn-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.learn-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--dark);
}
.learn-card__desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.learn-card__cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: auto;
}
.badge--coming-soon {
  background: var(--mint);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* ─── Glossary ──────────────────────────────────────────────────────────────── */
.glossary-bar {
  position: sticky;
  top: 66px;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0 10px;
}
.glossary-bar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.glossary-search-wrap {
  position: relative;
  flex-shrink: 0;
}
.glossary-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.glossary-search {
  width: 240px;
  padding: 8px 12px 8px 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.glossary-search:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(66,97,97,0.12);
}
.alpha-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.alpha-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 6px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.alpha-nav__link:hover,
.alpha-nav__link--active {
  background: var(--mint);
  color: var(--brand);
}
.alpha-nav__link--hidden { display: none; }
.glossary-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.glossary-group {
  margin-bottom: 44px;
  scroll-margin-top: 130px;
}
.glossary-group--hidden { display: none; }
.glossary-letter {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
  min-width: 40px;
}
.glossary-entries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.glossary-entry {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  transition: border-color 0.15s;
}
.glossary-entry:hover { border-color: var(--brand); }
.glossary-entry--hidden { display: none; }
.glossary-entry__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.glossary-entry__def {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.glossary-cat-header {
  margin-bottom: 20px;
}
.glossary-cat-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}
.glossary-cat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 8px 0 0;
  max-width: 600px;
}
.glossary-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .learn-grid { grid-template-columns: repeat(2, 1fr); }
  .glossary-entries { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .learn-grid { grid-template-columns: 1fr; }
  .glossary-bar { top: 66px; }
  .glossary-bar__inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .glossary-search { width: 100%; }
  .alpha-nav { flex-wrap: wrap; gap: 4px; }
  .alpha-nav__link { min-width: 28px; height: 28px; font-size: 0.75rem; }
  .glossary-entries { grid-template-columns: 1fr; }
  .glossary-entry { padding: 16px 18px; }
  .glossary-letter { font-size: 1.6rem; }
}

/* ─── Cookie banner ─────────────────────────────────────────────────────────── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000; background: var(--charcoal, #1e2329); border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; box-shadow: 0 -4px 24px rgba(0,0,0,0.25); }
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cookie-banner__text { flex: 1; min-width: 260px; color: rgba(255,255,255,0.75); font-size: 0.85rem; line-height: 1.55; }
.cookie-banner__text strong { display: block; color: #fff; margin-bottom: 3px; font-size: 0.9rem; }
.cookie-banner__text a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.cookie-banner__text a:hover { color: #fff; }
.cookie-banner__text p { margin: 0; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn { padding: 9px 20px; border-radius: 6px; font-size: 0.83rem; font-weight: 600; cursor: pointer; border: none; transition: opacity 0.15s; }
.cookie-btn--accept { background: var(--sage, #426161); color: #fff; }
.cookie-btn--accept:hover { opacity: 0.85; }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn--decline:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ─── Privacy policy prose ──────────────────────────────────────────────────── */
.prose-page { max-width: 720px; }
.prose-page h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); margin: 36px 0 10px; }
.prose-page h3 { font-size: 0.95rem; font-weight: 600; color: var(--dark); margin: 20px 0 8px; }
.prose-page p, .prose-page ul, .prose-page table { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.prose-page ul { padding-left: 20px; }
.prose-page ul li { margin-bottom: 5px; }
.prose-page a { color: var(--sage); }
.prose-page a:hover { color: var(--dark); }
.privacy-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.privacy-table th { text-align: left; padding: 8px 12px; background: var(--bg); font-weight: 600; border: 1px solid var(--border-faint); color: var(--dark); }
.privacy-table td { padding: 8px 12px; border: 1px solid var(--border-faint); color: var(--text-muted); vertical-align: top; }
.privacy-table code { font-family: monospace; font-size: 0.8rem; background: var(--bg); padding: 1px 5px; border-radius: 3px; }
