/* ============================================================
   DEPTH — Immersive Scrollytelling Magazine
   ============================================================ */

:root {
  --ocean: #0a1628;
  --ocean-2: #0f2035;
  --sand: #f4e4c1;
  --coral: #ff6b6b;
  --sage: #7fb069;
  --gold: #d4af37;
  --mist: #e8edf3;

  --ink: #0a1628;
  --paper: #fbf7ee;

  --ff-display: 'DM Serif Display', 'Cinzel', Georgia, serif;
  --ff-head: 'Sora', system-ui, sans-serif;
  --ff-body: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --ff-ui: 'IBM Plex Sans', system-ui, sans-serif;

  --wrap: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ocean);
  color: var(--sand);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- scroll progress ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  z-index: 200;
  transition: width 0.1s linear;
}

/* ---------- top nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  font-family: var(--ff-ui);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10, 22, 40, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244, 228, 193, 0.08);
}
.brand {
  font-family: var(--ff-display);
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--sand);
}
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(244, 228, 193, 0.72);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--sand); }
.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--gold);
  border-radius: 40px;
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--ocean) !important; }

/* ---------- cinematic hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: -8%;
  background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1900&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  animation: slowzoom 22s ease-out forwards;
  will-change: transform;
}
@keyframes slowzoom { to { transform: scale(1); } }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.55) 0%,
    rgba(10,22,40,0.35) 40%,
    rgba(10,22,40,0.95) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; padding: 0 24px; }
.hero .eyebrow {
  font-family: var(--ff-ui);
  font-weight: 600;
  letter-spacing: 5px;
  font-size: 13px;
  text-transform: uppercase;
  color: #F0C75E;
  margin-bottom: 22px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.75);
}
.hero h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.02;
  margin: 0 0 22px;
}
.hero h1 .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordin 0.9s var(--ease) forwards;
}
@keyframes wordin { to { opacity: 1; transform: none; } }
.hero p {
  font-size: 1.15rem;
  color: rgba(244, 228, 193, 0.85);
  max-width: 560px;
  margin: 0 auto;
}
.scrollcue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(244, 228, 193, 0.6);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scrollcue .line {
  width: 1px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0%,100%{opacity:.3;transform:scaleY(.7)} 50%{opacity:1;transform:scaleY(1)} }

/* ---------- section framing ---------- */
.section { padding: 96px 0; position: relative; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 40px; gap: 20px; }
.section-head h2 {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0;
  letter-spacing: -0.5px;
}
.section-head .kicker {
  font-family: var(--ff-ui);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.section-head p { margin: 0; color: rgba(244,228,193,0.6); font-size: 15px; max-width: 320px; }

/* ---------- featured teaser ---------- */
.featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
.featured .fimg {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.featured::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.1), rgba(10,22,40,0.92));
}
.featured .fbody { position: relative; z-index: 2; padding: 48px; max-width: 720px; }
.featured .tag { margin-bottom: 18px; }
.featured h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 14px;
}
.featured .dek { color: rgba(244,228,193,0.82); font-size: 1.1rem; margin-bottom: 24px; }

/* ---------- tag pill ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-ui);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 40px;
  background: rgba(244,228,193,0.08);
  border: 1px solid rgba(244,228,193,0.16);
}
.tag .dot { width: 8px; height: 8px; border-radius: 50%; }

/* ---------- read CTA ---------- */
.readcta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-ui); font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.readcta .arrow { transition: transform 0.3s var(--ease); }
a:hover .readcta .arrow, .readcta:hover .arrow { transform: translateX(6px); }

/* ---------- category rivers ---------- */
.river { display: flex; flex-direction: column; gap: 28px; }
.river-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(232,237,243,0.04), rgba(232,237,243,0.01));
  border: 1px solid rgba(244,228,193,0.06);
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
}
.river-card:nth-child(even) { direction: rtl; }
.river-card:nth-child(even) > * { direction: ltr; }
.river-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
  background: linear-gradient(160deg, rgba(232,237,243,0.08), rgba(232,237,243,0.02));
}
.river-card .thumb {
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ocean-2);
}
.river-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.river-card:hover .thumb img { transform: scale(1.06); }
.river-card h3 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.1; margin: 14px 0 10px;
}
.river-card .dek { color: rgba(244,228,193,0.68); font-size: 1rem; margin-bottom: 18px; }
.river-card .meta {
  font-family: var(--ff-ui); font-size: 12px; letter-spacing: 1px;
  color: rgba(244,228,193,0.45); margin-bottom: 14px;
}
.river-card .meta .by { color: var(--gold); font-weight: 600; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.from-left { transform: translateX(-60px); }
.reveal.from-right { transform: translateX(60px); }
.reveal.in.from-left, .reveal.in.from-right { transform: none; }

/* ---------- brief cards ---------- */
.brief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.brief-card {
  padding: 26px; border-radius: 14px;
  background: rgba(232,237,243,0.04);
  border: 1px solid rgba(244,228,193,0.07);
  transition: transform 0.4s var(--ease), background 0.4s;
}
.brief-card:hover { transform: translateY(-4px); background: rgba(232,237,243,0.07); }
.brief-card .num { font-family: var(--ff-display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.brief-card h4 { font-family: var(--ff-head); font-size: 1.1rem; margin: 12px 0 6px; }
.brief-card p { font-size: 0.95rem; color: rgba(244,228,193,0.6); margin: 0; }

/* ---------- join (contribute + subscribe) ---------- */
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.join-card {
  border-radius: 20px; padding: 40px;
  border: 1px solid rgba(244,228,193,0.1);
  display: flex; flex-direction: column;
}
.join-card.contribute {
  background: linear-gradient(160deg, rgba(212,175,55,0.14), rgba(255,107,107,0.05));
  border-color: rgba(212,175,55,0.3);
}
.join-card.subscribe {
  background: linear-gradient(160deg, rgba(108,155,209,0.14), rgba(232,237,243,0.03));
  border-color: rgba(108,155,209,0.3);
}
.join-card h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.1; margin: 10px 0 12px;
}
.join-card p { color: rgba(244,228,193,0.72); font-size: 1.02rem; margin: 0 0 22px; }
.join-card .btn { align-self: flex-start; }
.join-card .btn .arrow { transition: transform 0.3s var(--ease); }
.join-card .btn:hover .arrow { transform: translateX(5px); }
.join-sub { font-family: var(--ff-ui); font-size: 13px; color: rgba(244,228,193,0.5); margin-top: 14px; }
.brevo-embed { margin-top: auto; }

/* ---------- footer ---------- */
.footer { padding: 80px 0 120px; border-top: 1px solid rgba(244,228,193,0.08); margin-top: 40px; }
.footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer p { color: rgba(244,228,193,0.55); font-size: 15px; }
.footer h5 { font-family: var(--ff-ui); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.footer ul { list-style: none; padding: 0; font-family: var(--ff-ui); font-size: 14px; }
.footer li { margin: 10px 0; color: rgba(244,228,193,0.6); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.article-hero .ahimg {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  transform: scale(1.12); will-change: transform;
}
.article-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.45) 0%, rgba(10,22,40,0.35) 50%, rgba(10,22,40,0.98) 100%);
}
.article-hero .ahbody { position: relative; z-index: 2; padding: 0 24px 8vh; max-width: 900px; margin: 0 auto; width: 100%; }
.article-hero h1 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.03; margin: 18px 0;
}
.article-hero .dek { font-size: 1.25rem; color: rgba(244,228,193,0.85); max-width: 640px; }
.article-hero .byline {
  font-family: var(--ff-ui); font-size: 14px; letter-spacing: 0.5px;
  color: rgba(244,228,193,0.6); margin-top: 22px;
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.article-hero .byline strong {
  color: var(--gold); font-weight: 600; font-size: 15px;
}

/* ---------- author sign-off (end of read) ---------- */
.author-signoff {
  max-width: 720px; margin: 0 auto; padding: 34px 24px;
  display: flex; align-items: center; gap: 18px;
  border-top: 1px solid rgba(244,228,193,0.12);
}
.author-avatar {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--ff-display); font-size: 1.6rem; color: var(--ocean);
  background: linear-gradient(150deg, var(--gold), #b8860b);
}
.author-meta { display: flex; flex-direction: column; gap: 2px; }
.author-label {
  font-family: var(--ff-ui); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(244,228,193,0.5);
}
.author-name { font-family: var(--ff-display); font-size: 1.5rem; color: var(--sand); }
.author-sub { font-family: var(--ff-ui); font-size: 13px; color: rgba(244,228,193,0.55); }

.article-body { max-width: 720px; margin: 0 auto; padding: 80px 24px 120px; }
.article-body p {
  font-size: 1.25rem; line-height: 1.85; margin: 0 0 34px;
  color: rgba(244,228,193,0.9);
}
.article-body p:first-of-type::first-letter {
  font-family: var(--ff-display); font-size: 4.6rem; float: left;
  line-height: 0.8; padding: 8px 14px 0 0; color: var(--gold);
}
.pullquote {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2;
  text-align: center; color: var(--sand);
  margin: 70px 0; padding: 0 10px;
  transform: scale(0.9); opacity: 0.4;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}
.pullquote.hot { transform: scale(1); opacity: 1; }
.pullquote::before { content: '“'; color: var(--gold); }
.pullquote::after { content: '”'; color: var(--gold); }

.impact-moment {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; margin: 60px 0;
  border-radius: 20px; overflow: hidden;
}
.impact-moment .imimg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.impact-moment::after { content: ''; position: absolute; inset: 0; background: rgba(10,22,40,0.7); }
.impact-moment .imbody { position: relative; z-index: 2; padding: 40px; }
.impact-moment .stat { font-family: var(--ff-display); font-size: clamp(3rem, 9vw, 7rem); color: var(--gold); line-height: 1; }
.impact-moment .stat-label { font-family: var(--ff-ui); letter-spacing: 3px; text-transform: uppercase; font-size: 13px; color: var(--sand); margin-top: 14px; }

.chapter-bar {
  position: fixed; top: 50%; right: 22px; transform: translateY(-50%);
  z-index: 80; display: flex; flex-direction: column; gap: 14px;
}
.chapter-bar .cdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(244,228,193,0.25); cursor: pointer; transition: all 0.3s;
}
.chapter-bar .cdot.active { background: var(--gold); transform: scale(1.4); }

.article-end {
  max-width: 900px; margin: 0 auto; padding: 40px 24px 140px;
  border-top: 1px solid rgba(244,228,193,0.1);
}
.support {
  background: linear-gradient(160deg, rgba(212,175,55,0.12), rgba(255,107,107,0.06));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 18px; padding: 40px; text-align: center; margin-bottom: 50px;
}
.support h3 { font-family: var(--ff-display); font-size: 2rem; margin: 0 0 12px; }
.support p { color: rgba(244,228,193,0.75); max-width: 460px; margin: 0 auto 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-ui); font-size: 14px; letter-spacing: 1px;
  padding: 13px 26px; border-radius: 40px; border: none; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn-gold { background: var(--gold); color: var(--ocean); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-ghost { background: transparent; border: 1px solid rgba(244,228,193,0.3); color: var(--sand); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.35); }

/* ============================================================
   ADMIN PAGE
   ============================================================ */
.admin-shell { min-height: 100vh; padding: 120px 0 80px; }
.card {
  background: rgba(232,237,243,0.05);
  border: 1px solid rgba(244,228,193,0.1);
  border-radius: 18px; padding: 36px;
}
.login-card { max-width: 440px; margin: 0 auto; text-align: center; }
.login-card .glyph { font-family: var(--ff-display); font-size: 3rem; color: var(--gold); }
.login-card h2 { font-family: var(--ff-head); margin: 8px 0 6px; }
.login-card p { color: rgba(244,228,193,0.6); font-size: 15px; margin-bottom: 26px; }

.field { text-align: left; margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--ff-ui); font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  background: rgba(10,22,40,0.6); border: 1px solid rgba(244,228,193,0.15);
  color: var(--sand); font-family: var(--ff-body); font-size: 16px;
  transition: border-color 0.25s;
}
.field textarea { min-height: 260px; resize: vertical; line-height: 1.7; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field .hint { font-family: var(--ff-ui); font-size: 12px; color: rgba(244,228,193,0.45); margin-top: 6px; }

.alert { padding: 12px 16px; border-radius: 10px; font-family: var(--ff-ui); font-size: 14px; margin-bottom: 18px; }
.alert.err { background: rgba(255,107,107,0.15); border: 1px solid var(--coral); color: #ffc9c9; }
.alert.ok { background: rgba(127,176,105,0.15); border: 1px solid var(--sage); color: #d3f0c2; }

.admin-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: start; }
.admin-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.admin-head h1 { font-family: var(--ff-display); font-weight: 400; font-size: 2.4rem; margin: 0; }
.admin-head .who { font-family: var(--ff-ui); font-size: 13px; color: rgba(244,228,193,0.6); }

.preview-thumb { aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: var(--ocean-2); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.preview-thumb .ph { color: rgba(244,228,193,0.3); font-family: var(--ff-ui); font-size: 13px; }

.manage-list { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.manage-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: 10px; background: rgba(10,22,40,0.5);
  border: 1px solid rgba(244,228,193,0.08);
}
.manage-item img { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; }
.manage-item .mi-body { flex: 1; min-width: 0; }
.manage-item .mi-body strong { display: block; font-family: var(--ff-head); font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.manage-item .mi-body span { font-family: var(--ff-ui); font-size: 12px; color: rgba(244,228,193,0.5); }
.icon-btn { background: none; border: none; cursor: pointer; color: rgba(244,228,193,0.5); font-family: var(--ff-ui); font-size: 12px; padding: 6px 10px; border-radius: 6px; }
.icon-btn:hover { color: var(--coral); background: rgba(255,107,107,0.1); }

.upload-row { display: flex; gap: 10px; align-items: center; }
.upload-row input[type=file] { display: none; }
.file-btn { white-space: nowrap; }

/* ---------- empty state ---------- */
.empty { text-align: center; padding: 80px 20px; color: rgba(244,228,193,0.5); font-family: var(--ff-ui); }

/* ---------- auth chip in nav ---------- */
.nav-user { display: flex; align-items: center; gap: 10px; font-family: var(--ff-ui); font-size: 13px; color: rgba(244,228,193,0.8); }
.nav-user img, .nav-user .avatar {
  width: 30px; height: 30px; border-radius: 50%;
  object-fit: cover; border: 1px solid rgba(212,175,55,0.5);
  display: grid; place-items: center; background: var(--ocean-2);
  color: var(--gold); font-weight: 600; font-size: 13px;
}

/* ---------- or divider ---------- */
.or-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0 18px; color: rgba(244,228,193,0.4); font-family: var(--ff-ui); font-size: 12px; letter-spacing: 1px; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: rgba(244,228,193,0.14); }

/* ---------- Google / auth buttons ---------- */
.btn-google {
  background: #ffffff; color: #1f1f1f; font-weight: 500;
  font-family: var(--ff-ui);
}
.btn-google svg { width: 18px; height: 18px; }

/* ---------- demo banner ---------- */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  background: linear-gradient(90deg, rgba(212,175,55,0.95), rgba(255,107,107,0.9));
  color: #14110a; font-family: var(--ff-ui); font-size: 12.5px;
  letter-spacing: 0.3px; text-align: center; padding: 8px 44px 8px 16px;
}
.demo-banner a { text-decoration: underline; font-weight: 600; }
.demo-banner .x { position: absolute; right: 12px; top: 6px; cursor: pointer; font-size: 15px; opacity: 0.7; }
body.has-banner .nav { top: 34px; }

/* ---------- status badges ---------- */
.badge {
  display: inline-block; font-family: var(--ff-ui); font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px;
  border-radius: 40px; border: 1px solid transparent;
}
.badge.pending { color: var(--gold); border-color: rgba(212,175,55,0.5); background: rgba(212,175,55,0.12); }
.badge.published { color: var(--sage); border-color: rgba(127,176,105,0.5); background: rgba(127,176,105,0.12); }
.badge.denied { color: var(--coral); border-color: rgba(255,107,107,0.5); background: rgba(255,107,107,0.12); }

/* ---------- review queue actions ---------- */
.mi-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.icon-btn.approve:hover { color: var(--sage); background: rgba(127,176,105,0.12); }
.icon-btn.edit:hover { color: var(--gold); background: rgba(212,175,55,0.12); }

/* ---------- role intro ---------- */
.role-note {
  font-family: var(--ff-ui); font-size: 14px; color: rgba(244,228,193,0.7);
  background: rgba(232,237,243,0.04); border: 1px solid rgba(244,228,193,0.08);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 24px;
}
.role-note strong { color: var(--gold); }

/* ---------- newsletter (article end) ---------- */
.newsletter { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter input {
  flex: 1; padding: 13px 16px; border-radius: 40px;
  background: rgba(10,22,40,0.6); border: 1px solid rgba(244,228,193,0.2);
  color: var(--sand); font-family: var(--ff-body); font-size: 15px;
}
.newsletter input:focus { outline: none; border-color: var(--gold); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .river-card { grid-template-columns: 1fr; }
  .river-card:nth-child(even) { direction: ltr; }
  .brief-grid { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .footer .cols { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
  .chapter-bar { display: none; }
}
