
:root {
  --rutgers-scarlet: #cc0033;
  --rutgers-black: #111111;
  --rutgers-gray: #5f6a72;
  --bg: #fffdfb;
  --panel: #ffffff;
  --panel-alt: #f6f7f9;
  --border: #e5e7eb;
  --text: #1f2937;
  --muted: #6b7280;
  --shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
  --radius: 20px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #fff7f9 100%);
  line-height: 1.6;
}
a { color: var(--rutgers-scarlet); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.topbar {
  background: var(--rutgers-black);
  color: white;
  font-size: 0.95rem;
}
.topbar .container {
  display: flex; justify-content: space-between; gap: 1rem; padding: 0.65rem 0;
}
.topbar strong { color: #fff; }
header.site-header {
  position: sticky; top: 0; z-index: 10; backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.94); border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  padding: 0.85rem 0;
}

.brand { display:flex; align-items:center; gap:1rem; }
.brand img { width: 144px; height: auto; }
.brand-text { font-weight: 800; letter-spacing: 0.01em; color: var(--rutgers-black); font-size: 1.05rem; }
.brand-text span { display:block; font-size: 0.84rem; color: var(--muted); font-weight:600; }
nav ul { list-style: none; display: flex; gap: 0.35rem; padding: 0; margin: 0; flex-wrap: nowrap; align-items: center; }
nav a {
  display: inline-block; padding: 0.5rem 0.72rem; border-radius: 999px; color: var(--text); font-weight: 600; white-space: nowrap; font-size: 0.95rem;
}
nav a.active, nav a:hover { background: #fff0f4; color: var(--rutgers-scarlet); text-decoration: none; }
.hero {
  padding: 4.8rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(204,0,51,0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(204,0,51,0.08), transparent 32%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 2rem; align-items: center;
}
.eyebrow {
  display:inline-flex; align-items:center; gap:0.5rem; padding:0.35rem 0.8rem; border-radius:999px;
  background:#fff0f4; color:var(--rutgers-scarlet); font-weight:800; letter-spacing:0.03em; text-transform:uppercase; font-size:0.8rem;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 1rem; }
h1 { font-size: clamp(3rem, 5.8vw, 5rem); color: var(--rutgers-black); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.25rem; }
.hero-subhead {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: #39414a;
  font-weight: 600;
  margin: -0.2rem 0 1.1rem;
  max-width: 32ch;
}
.lead { font-size: 1.12rem; color: #3f4752; max-width: 70ch; }
.hero-card, .card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card { padding: 1.5rem; }
.hero-card h3 { margin-bottom: 0.5rem; }
.hero-brand-card {
  display: grid;
  gap: 1.2rem;
}
.rcp-logo {
  width: min(100%, 420px);
  margin: 0 auto;
  filter: drop-shadow(0 12px 20px rgba(17,17,17,0.08));
}
.hero-brand-copy { text-align: left; }
.hero-stat-grid, .grid-3, .grid-2, .grid-gallery, .member-grid {
  display: grid; gap: 1.25rem;
}
.hero-stat-grid { grid-template-columns: repeat(3, 1fr); margin-top: 0.25rem; }
.stat {
  padding: 1rem; background: var(--panel-alt); border-radius: 16px; border: 1px solid var(--border);
}
.stat .number { font-size: 1.55rem; font-weight: 800; color: var(--rutgers-scarlet); }
.button-row { display:flex; gap:1rem; flex-wrap:wrap; margin-top: 1.5rem; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:0.5rem; padding:0.9rem 1.2rem; border-radius:999px;
  font-weight:800; transition: all .2s ease; border: 1px solid transparent;
}
.btn.primary { background: var(--rutgers-scarlet); color: white; }
.btn.secondary { background: white; border-color: var(--border); color: var(--text); }
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.section { padding: 4rem 0; }
.section.alt { background: var(--panel-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { padding: 1.35rem; }
.card p:last-child { margin-bottom: 0; }
.tag {
  display:inline-block; padding:0.35rem 0.65rem; border-radius:999px; background:#fff0f4; color:var(--rutgers-scarlet); font-weight:700; font-size:.86rem;
}
.announcement {
  border-left: 6px solid var(--rutgers-scarlet); padding: 1.25rem 1.25rem 1.25rem 1rem; background: white; border-radius: 16px;
  box-shadow: var(--shadow);
}
.schedule {
  display: grid; gap: 1rem;
}
.schedule-block {
  background: white; border: 1px solid var(--border); border-radius: 18px; padding: 1.2rem;
}
.schedule-block ul { margin: 0.75rem 0 0; padding-left: 1.2rem; }
.schedule-block li { margin: 0.45rem 0; }
.gallery-item {
  overflow: hidden; border-radius: 18px; background: white; border:1px solid var(--border); box-shadow: var(--shadow);
}
.gallery-item img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item .caption { padding: 0.85rem 1rem 1rem; font-size: 0.95rem; color: var(--muted); }
.grid-gallery { grid-template-columns: repeat(3, 1fr); }
.member-grid { grid-template-columns: repeat(3, 1fr); }
.member-card h3 { margin-top: 0.65rem; }
.member-card p { margin: 0 0 0.7rem; }
.campus-section h2 { margin-bottom: 1.2rem; }
footer {
  background: var(--rutgers-black); color: rgba(255,255,255,0.88); padding: 2.25rem 0; margin-top: 3rem;
}
footer a { color: white; }
.small { font-size: 0.95rem; color: var(--muted); }
.list-clean { padding-left: 1.1rem; }
.list-clean li { margin-bottom: 0.55rem; }
.page-hero { padding: 3.3rem 0 2rem; }
.kicker { color: var(--rutgers-scarlet); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.85rem; }
@media (max-width: 1080px) {
  .member-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-gallery, .grid-2 { grid-template-columns: 1fr 1fr; }
  .hero-stat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .topbar .container, .nav-wrap, .brand { flex-direction: column; align-items: flex-start; }
  .hero-grid, .grid-3, .grid-gallery, .grid-2, .member-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
  h1 { font-size: 2.8rem; }
  nav ul { gap: 0.35rem; }
  .rcp-logo { width: min(100%, 320px); }
}

.hero-centered {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0 3rem;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-content .lead,
.hero-content .hero-subhead,
.hero-content .hero-kicker-inline {
  margin-left: auto;
  margin-right: auto;
}
.hero-content h1 {
  font-size: clamp(3.6rem, 7vw, 6rem);
  margin-bottom: 0.85rem;
}
.hero-subhead {
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 700;
  max-width: 42ch;
  margin-bottom: 0.4rem;
}
.hero-kicker-inline {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1.1rem;
}
.hero-buttons {
  justify-content: center;
}
.hero-stat-grid-centered {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin: 2rem auto 0;
  position: relative;
  z-index: 1;
}
.hero-followup {
  padding-top: 0;
}
@media (max-width: 980px) {
  .nav-wrap {
    flex-wrap: wrap;
  }
  nav {
    width: 100%;
  }
  nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 720px) {
  .hero-content h1 {
    font-size: 2.9rem;
  }
  .contact-points-grid {
    grid-template-columns: 1fr;
  }
}

.hero-inline-logo-wrap {
  margin: 1.75rem auto 0;
  display: flex;
  justify-content: center;
}
.hero-inline-logo {
  width: min(280px, 60vw);
  opacity: 0.98;
}
.contact-strip {
  text-align: center;
}
.contact-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}
.contact-points-grid h3 {
  margin-bottom: 0.35rem;
}
.contact-points-grid p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}
