/*
Theme Name: CAMP – Centre for Applied Moral Psychology
Theme URI: https://sharifflab.com
Author: CAMP Lab, UBC
Description: Custom WordPress theme for the Centre for Applied Moral Psychology at the University of British Columbia. Based on the v2 mockup design. Source Serif 4 + Inter typography, black/white/neutral palette.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: camp
Tags: research, academic, custom-colors, custom-menu, featured-images
*/

/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --black:    #111111;
  --dark:     #1E1E1E;
  --mid:      #555555;
  --muted:    #888888;
  --border:   #E2E2E2;
  --bg-soft:  #F7F7F5;
  --bg-white: #FFFFFF;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--black); background: var(--bg-white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.camp-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 64px; display: flex; align-items: center;
  padding: 0 3rem; gap: 3rem;
  justify-content: space-between;
}
.camp-nav-logo-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.camp-nav-logo { height: 40px; width: auto; object-fit: contain; }
.camp-nav-logo-text {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: var(--black); letter-spacing: 0.01em; white-space: nowrap;
}
.camp-nav-logo-text span { font-weight: 400; color: var(--muted); font-size: 13px; }
.camp-nav-links { display: flex; gap: 2rem; list-style: none; }
.camp-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--mid);
  transition: color 0.15s; position: relative; padding-bottom: 4px;
}
.camp-nav-links a:hover,
.camp-nav-links .current-menu-item > a,
.camp-nav-links .current_page_item > a { color: var(--black); }
.camp-nav-links .current-menu-item > a::after,
.camp-nav-links .current_page_item > a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--black); border-radius: 1px;
}
.camp-nav-right { font-size: 13px; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.camp-nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.camp-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }

/* ═══════════════════════════════════════
   HERO (Homepage)
═══════════════════════════════════════ */
.camp-hero {
  background: var(--black);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.camp-hero-left {
  padding: 5rem 3.5rem 4rem 4rem;
  display: flex; flex-direction: column; justify-content: flex-start;
  border-right: 1px solid #2a2a2a;
}
.camp-hero-right {
  padding: 5rem 4rem 4rem 3.5rem;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.camp-hero-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}
.camp-hero-h1 {
  font-family: var(--serif); font-size: 52px; font-weight: 700;
  line-height: 1.08; color: #fff; letter-spacing: -0.02em;
}
.camp-hero-h1 .dim { color: rgba(255,255,255,0.35); }
.camp-hero-sub {
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.55);
  max-width: 420px; margin-top: 2rem;
}
.camp-hero-ctas { display: flex; gap: 12px; margin-top: 2.5rem; }
.btn-white {
  background: #fff; color: var(--black); font-size: 14px; font-weight: 600;
  padding: 12px 24px; border: none; cursor: pointer; transition: opacity 0.15s;
  border-radius: 6px; display: inline-block;
}
.btn-white:hover { opacity: 0.88; }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.6); font-size: 14px;
  font-weight: 500; padding: 12px 24px; border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.15s; border-radius: 6px; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.55); color: #fff; }
.camp-hero-themes-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.camp-hero-theme-list { list-style: none; }
.camp-hero-theme-item {
  font-size: 16px; color: rgba(255,255,255,0.6);
  padding: 14px 0; border-bottom: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.15s;
}
.camp-hero-theme-item:first-child { border-top: 1px solid #2a2a2a; }
.camp-hero-theme-item:hover { color: rgba(255,255,255,0.95); }
.theme-num { font-size: 11px; color: rgba(255,255,255,0.2); font-weight: 500; }

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.camp-section { max-width: var(--max); margin: 0 auto; padding: 4rem 3rem; }
.camp-section-sm { max-width: var(--max); margin: 0 auto; padding: 3rem 3rem; }
.camp-section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 12px; margin-bottom: 2rem;
}
.camp-section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.camp-section-h2 {
  font-family: var(--serif); font-size: 36px; font-weight: 700;
  color: var(--black); line-height: 1.15; margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.camp-section-sub { font-size: 16px; color: var(--mid); line-height: 1.65; margin-bottom: 2.5rem; }
.camp-divider { height: 1px; background: var(--border); }
.view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--black);
  margin-top: 1.5rem; border-bottom: 2px solid var(--black);
  padding-bottom: 2px; transition: opacity 0.15s; cursor: pointer;
}
.view-all:hover { opacity: 0.6; }

/* ═══════════════════════════════════════
   PUB LIST (homepage)
═══════════════════════════════════════ */
.pub-list { list-style: none; border-top: 1px solid var(--border); }
.pub-item {
  display: grid; grid-template-columns: 72px 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}
.pub-item:hover { background: var(--bg-soft); }
.pub-year {
  padding: 1.1rem 1rem 1.1rem 0;
  font-size: 13px; font-weight: 500; color: var(--muted);
  border-right: 1px solid var(--border);
  display: flex; align-items: flex-start; padding-top: 1.25rem;
}
.pub-body { padding: 1.1rem 0 1.1rem 1.5rem; }
.pub-title { font-size: 15px; font-weight: 600; color: var(--black); line-height: 1.45; margin-bottom: 4px; }
.pub-meta { font-size: 13px; color: var(--muted); font-style: italic; line-height: 1.5; }
.pub-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 4px; margin-left: 8px;
  background: var(--black); color: #fff; vertical-align: middle;
}

/* ═══════════════════════════════════════
   PEOPLE TEASER (homepage)
═══════════════════════════════════════ */
.camp-people-grid {
  display: grid; grid-template-columns: 340px 1fr;
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
}
.camp-pi-card { background: var(--black); padding: 2.5rem; }
.camp-pi-photo { width: 90px; height: 110px; border-radius: 8px; overflow: hidden; margin-bottom: 1.25rem; background: #333; border: 2px solid rgba(255,255,255,0.1); }
.camp-pi-photo img { width: 100%; height: 100%; object-fit: cover; }
.camp-pi-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.camp-pi-role { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 1rem; line-height: 1.5; }
.camp-pi-bio { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; }
.camp-pi-links { display: flex; flex-wrap: wrap; gap: 8px; }
.camp-pi-link { font-size: 12px; font-weight: 500; padding: 5px 12px; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.6); border-radius: 5px; transition: all 0.15s; }
.camp-pi-link:hover { border-color: rgba(255,255,255,0.55); color: #fff; }
.camp-grad-panel { padding: 2.5rem; background: var(--bg-soft); }
.camp-grad-panel-label { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.camp-grad-row { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.camp-grad-row:last-child { border-bottom: none; }
.camp-grad-name { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 3px; }
.camp-grad-focus { font-size: 13px; color: var(--mid); line-height: 1.55; }

/* ═══════════════════════════════════════
   MEDIA CARDS (homepage)
═══════════════════════════════════════ */
.camp-media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.camp-media-card {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s; cursor: pointer; background: #fff;
}
.camp-media-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-2px); }
.camp-media-thumb { height: 160px; background: #1a1a1a; position: relative; overflow: hidden; }
.camp-media-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.camp-media-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase; }
.camp-media-badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.75); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 4px; letter-spacing: 0.04em; }
.camp-media-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.play-circle { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; transition: transform 0.15s; }
.camp-media-card:hover .play-circle { transform: scale(1.08); }
.play-tri { width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 14px solid #111; margin-left: 3px; }
.camp-media-body { padding: 1.1rem; }
.camp-media-source { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.camp-media-title { font-family: var(--serif); font-size: 16px; font-weight: 600; line-height: 1.4; color: var(--black); margin-bottom: 6px; }
.camp-media-date { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.camp-page-hero {
  background: var(--black); padding: 4rem 4rem 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end;
}
.camp-page-h1 { font-family: var(--serif); font-size: 52px; font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -0.02em; }
.camp-page-hero-desc { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.5); align-self: flex-end; }

/* ═══════════════════════════════════════
   PEOPLE PAGE
═══════════════════════════════════════ */
.camp-group-bar {
  padding: 0.75rem 4rem; font-size: 12px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--mid);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.camp-person-row {
  display: grid; grid-template-columns: 130px 1fr;
  gap: 2.5rem; padding: 2rem 4rem; border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}
.camp-person-row:hover { background: var(--bg-soft); }
.camp-person-photo { width: 130px; height: 158px; overflow: hidden; border-radius: 8px; background: #eee; flex-shrink: 0; border: 1px solid var(--border); }
.camp-person-photo img { width: 100%; height: 100%; object-fit: cover; }
.camp-person-photo-ph { width: 130px; height: 158px; background: #EFEFED; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 32px; color: #ccc; flex-shrink: 0; border: 1px solid var(--border); }
.camp-person-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.camp-person-role { font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 12px; letter-spacing: 0.02em; }
.camp-person-bio { font-size: 15px; line-height: 1.75; color: var(--mid); max-width: 580px; margin-bottom: 14px; }
.camp-person-links { display: flex; flex-wrap: wrap; gap: 8px; }
.camp-p-link { font-size: 12px; font-weight: 500; padding: 5px 13px; border: 1px solid var(--border); color: var(--mid); border-radius: 5px; transition: all 0.15s; }
.camp-p-link:hover { border-color: var(--black); color: var(--black); }
.camp-ra-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--border); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.camp-ra-cell { background: #fff; padding: 1.5rem 1rem; text-align: center; }
.camp-ra-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--black); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; color: rgba(255,255,255,0.7); font-weight: 700; overflow: hidden; }
.camp-ra-avatar img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; }
.camp-ra-name { font-size: 13px; font-weight: 600; color: var(--black); }

/* ═══════════════════════════════════════
   PUBLICATIONS PAGE
═══════════════════════════════════════ */
.camp-pub-page { display: grid; grid-template-columns: 220px 1fr; min-height: 70vh; }
.camp-pub-sidebar {
  border-right: 1px solid var(--border); padding: 2rem 1.5rem;
  position: sticky; top: 64px; align-self: start;
  max-height: calc(100vh - 64px); overflow-y: auto;
}
.camp-pub-sidebar::-webkit-scrollbar { width: 4px; }
.camp-pub-sidebar::-webkit-scrollbar-track { background: transparent; }
.camp-pub-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.camp-pub-search {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border);
  border-radius: 6px; font-size: 14px; color: var(--black);
  background: var(--bg-soft); outline: none; margin-bottom: 1.5rem;
  transition: border-color 0.15s; font-family: var(--sans);
}
.camp-pub-search:focus { border-color: var(--black); background: #fff; }
.camp-pub-sidebar-label { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.camp-year-nav { display: flex; flex-direction: column; gap: 2px; }
.camp-year-nav a { font-size: 14px; color: var(--muted); padding: 5px 8px; border-radius: 5px; transition: all 0.12s; cursor: pointer; }
.camp-year-nav a:hover { color: var(--black); background: var(--bg-soft); }
.camp-year-nav a.on { font-weight: 600; color: var(--black); background: var(--bg-soft); }
.camp-pub-main { padding: 2.5rem 3rem; }
.camp-pub-count { font-size: 14px; color: var(--muted); margin-bottom: 2rem; }
.camp-yr-head {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border);
  margin-bottom: 8px; margin-top: 2.5rem; scroll-margin-top: 80px;
}
.camp-yr-head:first-child { margin-top: 0; }
/* Expandable publication entry */
.camp-pe {
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}
.camp-pe-header {
  padding: 1rem 0; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.camp-pe-header:hover { }
.camp-pe:hover { background: var(--bg-soft); margin: 0 -8px; padding: 0 8px; }
.camp-pe-title-wrap { flex: 1; }
.camp-pe-title {
  font-size: 15px; font-weight: 600; color: var(--black);
  line-height: 1.45; margin-bottom: 4px;
  transition: color 0.12s;
}
.camp-pe-title a { color: var(--black); }
.camp-pe-title a:hover { color: var(--muted); text-decoration: underline; }
.camp-pe-auth { font-size: 13px; color: var(--muted); font-style: italic; line-height: 1.5; }
.camp-pe-toggle {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--muted); transition: all 0.2s;
  margin-top: 2px; user-select: none;
}
.camp-pe.open .camp-pe-toggle { background: var(--black); color: #fff; border-color: var(--black); transform: rotate(45deg); }
.camp-pe-abstract {
  display: none; padding: 0 0 1rem 0;
  font-size: 14px; line-height: 1.75; color: var(--mid);
  border-top: 1px solid var(--border); padding-top: 1rem;
}
.camp-pe.open .camp-pe-abstract { display: block; }
.camp-pe-abstract-placeholder { font-style: italic; color: var(--muted); }

/* ═══════════════════════════════════════
   MEDIA PAGE
═══════════════════════════════════════ */
.camp-media-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 340px; background: var(--black);
}
.camp-mh-img { background: #1a1a1a; overflow: hidden; position: relative; }
.camp-mh-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.camp-mh-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.camp-mh-img-text { font-family: var(--serif); font-size: 80px; font-weight: 700; color: rgba(255,255,255,0.06); }
.camp-mh-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.camp-mh-body { padding: 3rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.camp-mh-badge { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.camp-mh-title { font-family: var(--serif); font-size: 28px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.camp-mh-source { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.camp-mh-links { display: flex; gap: 10px; }
.camp-mh-link { font-size: 13px; font-weight: 500; padding: 9px 18px; border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.65); border-radius: 6px; transition: all 0.15s; }
.camp-mh-link:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.camp-filter-bar { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 1rem 3rem; display: flex; gap: 8px; flex-wrap: wrap; }
.camp-f-btn { font-size: 13px; font-weight: 500; padding: 6px 16px; border-radius: 6px; border: 1px solid var(--border); background: #fff; color: var(--mid); cursor: pointer; transition: all 0.15s; }
.camp-f-btn:hover { border-color: var(--black); color: var(--black); }
.camp-f-btn.on { background: var(--black); color: #fff; border-color: var(--black); }
.camp-media-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ═══════════════════════════════════════
   GET INVOLVED
═══════════════════════════════════════ */
.camp-gi-status { background: var(--dark); display: grid; grid-template-columns: 1fr 1fr; padding: 2.5rem 4rem; gap: 2rem; }
.camp-gi-status-item { border-right: 1px solid #2e2e2e; padding-right: 2rem; }
.camp-gi-status-item:last-child { border-right: none; padding-right: 0; padding-left: 2rem; }
.camp-gi-status-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.camp-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #555; flex-shrink: 0; }
.camp-gi-status-txt { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.camp-gi-body { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border); }
.camp-gi-col { padding: 3rem 4rem; border-right: 1px solid var(--border); }
.camp-gi-col:last-child { border-right: none; }
.camp-gi-h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--black); margin-bottom: 1rem; }
.camp-gi-text { font-size: 15px; line-height: 1.8; color: var(--mid); }
.camp-gi-form { padding: 3rem 4rem; background: var(--bg-soft); }
.camp-gi-form-h { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--black); margin-bottom: 1.5rem; }
.camp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.camp-field { display: flex; flex-direction: column; gap: 6px; }
.camp-field label { font-size: 13px; font-weight: 600; color: var(--black); }
.camp-field input, .camp-field select, .camp-field textarea {
  padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 15px; font-family: var(--sans); color: var(--black); background: #fff;
  outline: none; transition: border-color 0.15s; width: 100%;
}
.camp-field input:focus, .camp-field select:focus, .camp-field textarea:focus { border-color: var(--black); }
.camp-btn-submit { background: var(--black); color: #fff; font-size: 15px; font-weight: 600; padding: 13px 28px; border: none; border-radius: 6px; cursor: pointer; transition: opacity 0.15s; margin-top: 6px; font-family: var(--sans); }
.camp-btn-submit:hover { opacity: 0.8; }
.camp-form-notice { font-size: 13px; color: var(--muted); margin-top: 12px; }
.camp-form-success { display: none; background: #f0faf4; border: 1px solid #a8ddb5; border-radius: 8px; padding: 1.25rem 1.5rem; color: #1a5c2a; font-size: 15px; margin-top: 1rem; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.camp-footer { background: var(--black); padding: 3rem 4rem 1.5rem; }
.camp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.camp-footer-h { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.camp-footer-name { font-family: var(--serif); font-size: 20px; font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.camp-footer-addr { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.35); }
.camp-footer-nav { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.camp-footer-nav a { font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.camp-footer-nav a:hover { color: rgba(255,255,255,0.85); }
.camp-footer-bottom { border-top: 1px solid #2a2a2a; padding-top: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.camp-footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .camp-hero { grid-template-columns: 1fr; }
  .camp-hero-left { border-right: none; border-bottom: 1px solid #2a2a2a; }
  .camp-hero-h1 { font-size: 40px; }
  .camp-media-grid, .camp-media-list-grid { grid-template-columns: repeat(2, 1fr); }
  .camp-pub-page { grid-template-columns: 1fr; }
  .camp-pub-sidebar { position: static; max-height: none; border-right: none; border-bottom: 1px solid var(--border); }
  .camp-year-nav { flex-direction: row; flex-wrap: wrap; }
  .camp-people-grid { grid-template-columns: 1fr; }
  .camp-page-hero { grid-template-columns: 1fr; }
  .camp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .camp-nav { padding: 0 1.5rem; }
  .camp-nav-links { display: none; }
  .camp-nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; gap: 1rem; z-index: 99; }
  .camp-nav { position: relative; }
  .camp-nav-toggle { display: flex; }
  .camp-hero-left, .camp-hero-right { padding: 3rem 1.5rem; }
  .camp-hero-h1 { font-size: 34px; }
  .camp-section, .camp-section-sm { padding: 3rem 1.5rem; }
  .camp-media-grid, .camp-media-list-grid { grid-template-columns: 1fr; }
  .camp-ra-grid { grid-template-columns: repeat(3, 1fr); }
  .camp-person-row { padding: 1.5rem; gap: 1.25rem; grid-template-columns: 100px 1fr; }
  .camp-person-photo, .camp-person-photo-ph { width: 100px; height: 120px; }
  .camp-page-hero { padding: 2.5rem 1.5rem; }
  .camp-page-h1 { font-size: 36px; }
  .camp-gi-status { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .camp-gi-status-item { border-right: none; padding: 0 0 1.5rem; border-bottom: 1px solid #2e2e2e; }
  .camp-gi-status-item:last-child { border-bottom: none; padding: 1.5rem 0 0; }
  .camp-gi-body { grid-template-columns: 1fr; }
  .camp-gi-col { padding: 2rem 1.5rem; border-right: none; border-bottom: 1px solid var(--border); }
  .camp-gi-form { padding: 2rem 1.5rem; }
  .camp-form-grid { grid-template-columns: 1fr; }
  .camp-footer { padding: 2rem 1.5rem 1rem; }
  .camp-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .camp-group-bar { padding: 0.75rem 1.5rem; }
}
@media (max-width: 480px) {
  .camp-ra-grid { grid-template-columns: repeat(2, 1fr); }
  .camp-hero-ctas { flex-direction: column; }
}
