
:root {
  --forest: #1B3A2D;
  --forest-mid: #2C5240;
  --forest-light: #3D6B52;
  --sage: #7A9B82;
  --sage-light: #B2CABA;
  --cream: #F5F0E8;
  --sand: #EDE5D0;
  --gold: #C8943A;
  --gold-light: #E8B45A;
  --gold-pale: #F7E8C8;
  --white: #FDFAF5;
  --text-dark: #1A1A16;
  --text-mid: #3D3D35;
  --text-muted: #6B6B5E;
  --border: rgba(27,58,45,0.15);
  --border-gold: rgba(200,148,58,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }

/* ── ANNOUNCE ── */
.announce {
  background: var(--gold); padding: 9px 2rem; text-align: center;
  font-size: 13px; font-weight: 700; color: var(--forest); letter-spacing: 0.3px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
}
.announce a { color: var(--forest); text-decoration: underline; }

/* ── NAV ── */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
  background: var(--forest);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 60px;
  border-bottom: 2px solid var(--gold);
  transition: box-shadow 0.3s;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 34px; height: 34px; background: var(--gold); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 15px;
  color: var(--forest); flex-shrink: 0;
}
.nav-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: #fff; }
.nav-links { display: flex; list-style: none; }
.nav-links a {
  display: block; padding: 0 0.9rem; height: 60px; line-height: 60px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase;
  color: rgba(255,255,255,0.72); text-decoration: none;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--forest) !important;
  border-radius: 4px; padding: 0 1.1rem !important;
  height: 34px !important; line-height: 34px !important;
  margin: auto 0; border-bottom: none !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 96px; left: 0; right: 0;
  background: var(--forest); z-index: 99; border-bottom: 2px solid var(--gold);
  padding: 1rem 0;
}
.mobile-menu a {
  display: block; padding: 0.75rem 2rem;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none; border-left: 3px solid transparent;
}
.mobile-menu a:hover { color: var(--gold-light); border-left-color: var(--gold); }
.mobile-menu.open { display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--forest);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden; padding-top: 96px;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(200,148,58,0.04) 60px, rgba(200,148,58,0.04) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(200,148,58,0.04) 60px, rgba(200,148,58,0.04) 61px);
  pointer-events: none;
}
.hero-arc {
  position: absolute; bottom: -2px; left: 0; right: 0; height: 100px;
  background: var(--white); clip-path: ellipse(60% 100% at 50% 100%);
}
.hero-inner {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 5rem 2rem 9rem; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,148,58,0.15); border: 1px solid rgba(200,148,58,0.4);
  border-radius: 20px; padding: 6px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 2rem;
  animation: fadeDown 0.8s ease both;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero-wordmark {
  font-family: 'Playfair Display', serif; font-size: clamp(68px,13vw,124px);
  font-weight: 700; color: #fff; letter-spacing: -2px; line-height: 1;
  margin-bottom: 0.4rem; animation: fadeDown 0.8s 0.1s ease both;
}
.hero-wordmark span { color: var(--gold); }
.hero-subtitle {
  font-family: 'Source Serif 4', serif; font-size: clamp(15px,2.2vw,21px);
  font-weight: 300; font-style: italic; color: var(--sage-light);
  margin-bottom: 2.5rem; animation: fadeDown 0.8s 0.2s ease both;
}
.hero-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 3rem; animation: fadeDown 0.8s 0.3s ease both;
}
.hero-meta-pill {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; padding: 5px 13px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; animation: fadeDown 0.8s 0.4s ease both; }
@keyframes fadeDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.2s;
}
.btn-primary { background: var(--gold); color: var(--forest); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-dark { background: var(--forest); color: #fff; }
.btn-dark:hover { background: var(--forest-mid); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-gold-outline:hover { background: var(--gold-pale); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--sand); border-bottom: 1px solid var(--border-gold);
  padding: 0.75rem 2rem; display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-mid); }
.trust-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ── LAYOUT ── */
section { padding: 5.5rem 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.65rem; }
.section-heading { font-family: 'Playfair Display', serif; font-size: clamp(26px,3.5vw,40px); font-weight: 700; color: var(--forest); line-height: 1.15; margin-bottom: 1rem; }
.section-lead { font-size: 16px; color: var(--text-muted); max-width: 580px; line-height: 1.85; }
.section-divider { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.section-divider-line { flex: 1; height: 1px; background: var(--border-gold); }
.section-divider-ornament { font-size: 16px; color: var(--gold); }
.scroll-target { scroll-margin-top: 100px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.stats-cluster { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: 8px;
  padding: 1.4rem; position: relative; overflow: hidden;
}
.stat-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--gold); }
.stat-number { font-family:'Playfair Display',serif; font-size:36px; font-weight:700; color:var(--forest); line-height:1; margin-bottom:4px; }
.stat-label { font-size:12px; font-weight:700; letter-spacing:0.5px; text-transform:uppercase; color:var(--text-muted); }
.stat-card.accent { background: var(--forest); }
.stat-card.accent .stat-number { color: var(--gold); }
.stat-card.accent .stat-label { color: var(--sage-light); }

/* ── CURRENT ISSUE ── */
.current-issue-section { background: var(--cream); }
.issue-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.issue-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: var(--gold-light);
  border-radius: 4px; padding: 6px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.articles-list { display: flex; flex-direction: column; gap: 1.25rem; }
.article-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 1.5rem; border-left: 3px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.article-card:hover { border-left-color: var(--gold); box-shadow: 0 4px 20px rgba(27,58,45,0.08); }
.article-type {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale); border-radius: 3px; padding: 3px 8px;
  margin-bottom: 0.6rem; line-height: 1.6;
}
.article-card h3 { font-family:'Playfair Display',serif; font-size:17px; font-weight:600; color:var(--forest); margin-bottom:0.4rem; line-height:1.4; }
.article-authors { font-size:13px; color:var(--text-muted); margin-bottom:0.5rem; }
.article-meta { display:flex; gap:1.5rem; flex-wrap:wrap; }
.article-meta span { font-size:12px; color:var(--text-muted); }
.article-meta a { font-size:12px; color:var(--gold); text-decoration:none; font-weight:700; }
.article-meta a:hover { text-decoration:underline; }
.doi-badge { font-size:11px; color:var(--text-muted); background:var(--cream); border-radius:3px; padding:2px 8px; font-family:monospace; }

/* ── SCOPE ── */
.scope-section { background: var(--white); }
.scope-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:2.5rem; }
.scope-card {
  background: var(--cream); border:1px solid var(--border); border-radius:8px;
  padding:1.6rem 1.4rem; border-top:3px solid transparent;
  transition:border-color 0.2s,transform 0.2s,box-shadow 0.2s;
}
.scope-card:hover { border-top-color:var(--gold); transform:translateY(-4px); box-shadow:0 8px 28px rgba(27,58,45,0.1); }
.scope-icon { width:42px;height:42px; background:var(--gold-pale); border-radius:8px; display:flex;align-items:center;justify-content:center; font-size:20px; margin-bottom:0.9rem; }
.scope-card h3 { font-family:'Playfair Display',serif; font-size:15px; font-weight:600; color:var(--forest); margin-bottom:0.45rem; }
.scope-card p { font-size:13px; color:var(--text-muted); line-height:1.6; }
.scope-card-cross {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  border-top: 3px solid var(--gold) !important;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
.scope-card-cross:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(27,58,45,0.22); border-top-color: var(--gold-light) !important; }
.scope-card-cross .scope-icon { background: rgba(200,148,58,0.2); font-size: 24px; width: 52px; height: 52px; flex-shrink: 0; }
.scope-card-cross h3 { font-size: 17px; color: var(--gold-light); margin-bottom: 0.6rem; }
.scope-card-cross p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* ── EDITORIAL BOARD ── */
.board-section { background: var(--cream); }
.board-tabs { display:flex; gap:0; border-bottom:2px solid var(--border-gold); margin-bottom:3rem; flex-wrap:wrap; }
.board-tab {
  padding:0.75rem 1.5rem; font-size:13px; font-weight:700; letter-spacing:0.5px; text-transform:uppercase;
  color:var(--text-muted); cursor:pointer; border-bottom:3px solid transparent; margin-bottom:-2px;
  background:none; border-top:none; border-left:none; border-right:none;
  transition:color 0.2s,border-color 0.2s;
}
.board-tab.active { color:var(--forest); border-bottom-color:var(--gold); }
.board-tab:hover { color:var(--forest); }
.board-panel { display:none; }
.board-panel.active { display:block; }
.board-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.board-card {
  background:var(--white); border:1px solid var(--border); border-radius:8px;
  padding:1.5rem; transition:box-shadow 0.2s,transform 0.2s;
}
.board-card:hover { box-shadow:0 6px 24px rgba(27,58,45,0.1); transform:translateY(-2px); }
.board-avatar {
  width:52px; height:52px; border-radius:50%; background:var(--forest);
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; font-size:18px; font-weight:700;
  color:var(--gold); margin-bottom:1rem; flex-shrink:0;
}
.board-name { font-family:'Playfair Display',serif; font-size:15px; font-weight:600; color:var(--forest); margin-bottom:2px; }
.board-role { font-size:11px; font-weight:700; letter-spacing:0.5px; text-transform:uppercase; color:var(--gold); margin-bottom:4px; }
.board-affil { font-size:13px; color:var(--text-muted); line-height:1.5; margin-bottom:6px; }
.board-area { font-size:12px; color:var(--sage); font-style:italic; }
.editor-in-chief-card {
  grid-column: 1 / -1;
  display:flex; align-items:center; gap:2rem;
  background:var(--forest); border-radius:8px; padding:2rem;
  border:none;
}
.editor-in-chief-card:hover { box-shadow:0 8px 32px rgba(27,58,45,0.25); transform:translateY(-2px); }
.eic-avatar {
  width:72px; height:72px; border-radius:50%; background:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; font-size:26px; font-weight:700;
  color:var(--forest); flex-shrink:0;
}
.eic-badge { font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gold); margin-bottom:4px; }
.eic-name { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:#fff; margin-bottom:4px; }
.eic-affil { font-size:14px; color:var(--sage-light); }
.eic-area { font-size:13px; color:rgba(255,255,255,0.5); font-style:italic; margin-top:4px; }

/* ── SUBMISSION ── */
.submit-section { background: var(--white); }
.submit-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.info-block { margin-bottom:2rem; }
.info-block h3 { font-family:'Playfair Display',serif; font-size:17px; font-weight:600; color:var(--forest); margin-bottom:0.7rem; padding-bottom:0.5rem; border-bottom:1px solid var(--border-gold); }
.info-row { display:flex; justify-content:space-between; align-items:baseline; padding:7px 0; border-bottom:1px solid var(--border); font-size:14px; }
.info-row:last-child { border-bottom:none; }
.info-row-label { color:var(--text-muted); }
.info-row-value { color:var(--text-dark); font-weight:700; text-align:right; max-width:55%; }
.fee-box { background:var(--forest); border-radius:8px; padding:2rem; border-top:3px solid var(--gold); }
.fee-box h3 { font-family:'Playfair Display',serif; font-size:17px; font-weight:600; color:var(--gold-light); margin-bottom:1.25rem; }
.fee-row { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.08); font-size:14px; }
.fee-row:last-child { border-bottom:none; }
.fee-row-label { color:rgba(255,255,255,0.65); }
.fee-row-value { color:var(--gold); font-weight:700; font-size:15px; }
.bank-info { margin-top:1.25rem; padding:1rem; background:rgba(255,255,255,0.06); border-radius:6px; font-size:13px; color:rgba(255,255,255,0.5); line-height:1.8; }
.bank-info strong { color:rgba(255,255,255,0.8); }

/* process steps */
.process-steps { display:flex; flex-direction:column; gap:0; margin-top:2rem; }
.process-step { display:flex; gap:1.25rem; align-items:flex-start; padding:1rem 0; border-bottom:1px solid var(--border); }
.process-step:last-child { border-bottom:none; }
.step-num { width:32px; height:32px; background:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; color:var(--forest); flex-shrink:0; margin-top:2px; }
.step-content h4 { font-size:15px; font-weight:700; color:var(--forest); margin-bottom:2px; }
.step-content p { font-size:13px; color:var(--text-muted); }

/* ── ETHICS ── */
.ethics-section { background: var(--forest); }
.ethics-section .section-heading { color:#fff; }
.ethics-section .section-label { color:var(--gold-light); }
.ethics-section .section-lead { color:var(--sage-light); }
.ethics-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.25rem; margin-top:2.5rem; }
.ethics-card { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:8px; padding:1.6rem; border-left:3px solid var(--gold); }
.ethics-card h3 { font-family:'Playfair Display',serif; font-size:15px; font-weight:600; color:var(--gold-light); margin-bottom:0.5rem; }
.ethics-card p { font-size:13px; color:rgba(255,255,255,0.55); line-height:1.7; }

/* ── INDEXING ── */
.indexing-section { background:var(--white); }
.indexing-row { display:flex; align-items:center; justify-content:center; gap:2rem; flex-wrap:wrap; margin-top:2.5rem; }
.index-pill { display:flex; align-items:center; gap:10px; background:var(--cream); border:1px solid var(--border-gold); border-radius:30px; padding:10px 22px; font-size:14px; font-weight:700; color:var(--forest); }
.index-pill-dot { width:8px;height:8px; background:var(--gold); border-radius:50%; }

/* ── PEER REVIEW PROCESS ── */
.process-section { background: var(--cream); }
.timeline { display:flex; gap:0; margin-top:3rem; position:relative; }
.timeline::before { content:''; position:absolute; top:28px; left:28px; right:28px; height:2px; background:var(--border-gold); z-index:0; }
.timeline-step { flex:1; display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 0.5rem; position:relative; z-index:1; }
.timeline-circle { width:56px;height:56px; border-radius:50%; background:var(--forest); border:3px solid var(--gold); display:flex;align-items:center;justify-content:center; font-size:18px; margin-bottom:0.75rem; flex-shrink:0; }
.timeline-step h4 { font-size:13px; font-weight:700; color:var(--forest); margin-bottom:4px; }
.timeline-step p { font-size:12px; color:var(--text-muted); }

/* ── CONTACT ── */
.contact-section { background: var(--white); }
.contact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2.5rem; }
.contact-card { background:var(--cream); border:1px solid var(--border); border-radius:8px; padding:2rem 1.5rem; text-align:center; }
.contact-icon { width:50px;height:50px; background:var(--forest); border-radius:50%; display:flex;align-items:center;justify-content:center; margin:0 auto 1rem; font-size:20px; }
.contact-card h3 { font-family:'Playfair Display',serif; font-size:15px; font-weight:600; color:var(--forest); margin-bottom:0.4rem; }
.contact-card a, .contact-card p { font-size:14px; color:var(--text-muted); text-decoration:none; word-break:break-word; }
.contact-card a:hover { color:var(--gold); }

/* ── FOOTER ── */
footer { background:#0E1F16; color:rgba(255,255,255,0.45); padding:3.5rem 2rem 2rem; border-top:2px solid var(--gold); }
.footer-inner { max-width:1140px; margin:0 auto; }
.footer-cols { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-brand-col .footer-brand { font-family:'Playfair Display',serif; font-size:24px; font-weight:700; color:var(--gold); margin-bottom:0.3rem; }
.footer-brand-col .footer-sub { font-size:13px; color:rgba(255,255,255,0.3); font-style:italic; margin-bottom:1rem; }
.footer-brand-col p { font-size:13px; color:rgba(255,255,255,0.35); line-height:1.8; }
.footer-col h4 { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:0.6rem; }
.footer-col ul li a { font-size:13px; color:rgba(255,255,255,0.35); text-decoration:none; transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:1.5rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.footer-tagline { font-family:'Source Serif 4',serif; font-style:italic; font-size:14px; color:rgba(255,255,255,0.3); }
.footer-copy { font-size:12px; color:rgba(255,255,255,0.2); }
.cc-badge { display:inline-flex; align-items:center; gap:6px; font-size:12px; color:rgba(255,255,255,0.3); margin-top:0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width:960px) {
  nav { padding:0 1.5rem; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .about-grid, .submit-grid { grid-template-columns:1fr; gap:2.5rem; }
  .scope-grid { grid-template-columns:1fr 1fr; }
  .board-grid { grid-template-columns:1fr 1fr; }
  .editor-in-chief-card { flex-direction:column; text-align:center; }
  .ethics-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr 1fr; }
  .footer-cols { grid-template-columns:1fr 1fr; }
  .timeline { flex-direction:column; gap:0; }
  .timeline::before { top:0; bottom:0; left:27px; right:auto; width:2px; height:auto; }
  .timeline-step { flex-direction:row; text-align:left; gap:1rem; align-items:flex-start; padding:0.75rem 0; }
  .timeline-circle { margin-bottom:0; flex-shrink:0; }
}
@media (max-width:600px) {
  .scope-grid, .stats-cluster, .board-grid, .contact-grid, .ethics-grid { grid-template-columns:1fr; }
  .footer-cols { grid-template-columns:1fr; }
  section { padding:3.5rem 0; }
  .trust-bar { gap:1rem; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
}

/* CMS dynamic helpers */
.admin-link-fixed{position:fixed;right:14px;bottom:14px;z-index:300;background:rgba(27,58,45,.92);color:#fff;padding:8px 12px;border-radius:999px;font-size:12px;text-decoration:none;box-shadow:0 10px 30px rgba(0,0,0,.2)}
.media-img{max-width:100%;border-radius:10px}

/* Dynamic branding images from admin settings */

.nav-logo-img{width:44px;height:44px;object-fit:contain;border-radius:10px;background:#fff;padding:3px;box-shadow:0 4px 18px rgba(0,0,0,.08)}
.footer-logo-img{max-width:150px;max-height:70px;object-fit:contain;display:block;margin-bottom:.65rem;filter:drop-shadow(0 8px 22px rgba(0,0,0,.15))}
