/* Faculty page — page-specific layout only. Namespaced .fac-* classes, so
   no collision with theme.css. Chrome (nav, footer) and brand variables come
   from theme.css; this is a light content page (default body theme) with its
   own dark hero / CTA sections. */

/* ── HERO (dark) ── */
.fac-hero { background: var(--black); color: var(--white); padding: 9rem 5vw 5rem; text-align: center; border-bottom: 2px solid var(--accent); }
/* .fac-hero-eyebrow — canonical .eyebrow group in theme.css */
.fac-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4.5rem); line-height: 1; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem; }
.fac-hero h1 span { color: var(--accent); }
.fac-hero p { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; }
.fac-hero-stats { display: flex; gap: 3rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.fac-hero-stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--accent); line-height: 1; }
.fac-hero-stat-label { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── NOTE STRIP ── */
.fac-note { background: var(--bg-white); border-bottom: 1px solid var(--line-light); padding: 1.5rem 5vw; text-align: center; }
.fac-note p { max-width: 820px; margin: 0 auto; font-size: 0.92rem; color: var(--ink-muted); line-height: 1.6; }
.fac-note strong { color: var(--ink); }

/* ── ROSTER GRID ── */
.fac-section { padding: 5rem 5vw 6rem; max-width: 1200px; margin: 0 auto; }
/* .fac-section-eyebrow — canonical .eyebrow group in theme.css */
.fac-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; }
.fac-section h2 span { color: var(--accent); }
.fac-section-lead { max-width: 720px; margin-bottom: 3rem; color: var(--ink-muted); font-size: 1rem; line-height: 1.7; }

.fac-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1024px) { .fac-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .fac-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .fac-grid { grid-template-columns: 1fr; } }

.fac-card { background: var(--bg-white); border: 1px solid var(--line-light); box-shadow: var(--card-shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.fac-card:hover { transform: translateY(-2px); box-shadow: var(--card-shadow-hover); }
.fac-photo { width: 100%; aspect-ratio: 1 / 1; background: rgba(237,28,36,0.04); position: relative; overflow: hidden; }
.fac-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.fac-photo.no-img::after { content: attr(data-initials); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 2px; color: var(--accent); background: rgba(237,28,36,0.06); }
.fac-info { padding: 1rem 1.1rem 1.25rem; border-top: 2px solid var(--accent); }
.fac-name { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); line-height: 1.15; margin-bottom: 4px; }
.fac-role { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.45; }

/* ── CTA (dark) ── */
.fac-cta { background: var(--black); color: var(--white); padding: 5rem 5vw; text-align: center; border-top: 2px solid var(--accent); }
/* .fac-cta-eyebrow — canonical .eyebrow in theme.css */
.fac-cta h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.fac-cta h2 span { color: var(--accent); }
.fac-cta p { max-width: 600px; margin: 0 auto 2rem; color: rgba(255,255,255,0.75); font-size: 1.02rem; }
/* .btn-red — canonical .btn in theme.css */
