@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --maroon: #6B1A1A;
  --maroon-dark: #4a1010;
  --maroon-light: #8b2828;
  --gold: #C9963A;
  --gold-light: #e8b558;
  --gold-pale: #f5e9cf;
  --cream: #FEFBF3;
  --cream-dark: #f5f0e8;
  --text: #1a1208;
  --text-mid: #4a3e2a;
  --text-light: #7a6a50;
  --white: #ffffff;
  --shadow: 0 4px 30px rgba(107,26,26,0.12);
  --shadow-sm: 0 2px 12px rgba(107,26,26,0.08);
  --radius: 4px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--maroon-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { color: var(--text-mid); margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }

/* ─── NAVBAR ────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(254,251,243,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,150,58,0.25);
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(107,26,26,0.08);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
}
.nav-emblem {
  width: 46px; height: 46px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-emblem span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold-light); letter-spacing: 0.5px;
}
.nav-title-block { display: flex; flex-direction: column; line-height: 1.1; }
.nav-title-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--maroon-dark); letter-spacing: 0.3px;
}
.nav-title-sub {
  font-size: 0.68rem; font-weight: 400;
  color: var(--text-light); letter-spacing: 0.8px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 0; list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 0 14px; height: 72px;
  line-height: 72px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--maroon);
  border-bottom-color: var(--gold);
}
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid rgba(201,150,58,0.2);
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(107,26,26,0.15);
  list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown li a {
  display: block; padding: 10px 18px;
  font-size: 0.82rem; font-weight: 400;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(201,150,58,0.1);
  transition: var(--transition);
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { background: var(--gold-pale); color: var(--maroon); padding-left: 24px; }
.nav-cta {
  background: var(--maroon) !important; color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 3px !important;
  line-height: 1 !important; height: auto !important;
  font-weight: 600 !important; letter-spacing: 0.5px;
  transition: var(--transition) !important;
  border-bottom: none !important;
  margin-left: 10px;
}
.nav-cta:hover { background: var(--maroon-light) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--maroon); border-radius: 2px; transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed; inset: 0; top: 72px;
  background: var(--cream); z-index: 999;
  overflow-y: auto; padding: 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0;
  font-size: 1.1rem; font-weight: 500;
  color: var(--text); border-bottom: 1px solid rgba(201,150,58,0.2);
}
.mobile-menu a:hover { color: var(--maroon); }

/* ─── PAGE WRAP ─────────────────────────────── */
.page-wrap { padding-top: 72px; }

/* ─── PAGE HERO ─────────────────────────────── */
.page-hero {
  background: var(--maroon);
  position: relative; overflow: hidden;
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 40px,
    rgba(201,150,58,0.04) 40px, rgba(201,150,58,0.04) 80px
  );
}
.page-hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero .breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero .hero-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 0;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 0; }

/* ─── SECTION STYLES ────────────────────────── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-label::before, .section-label::after {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold);
}
.section-title { margin-bottom: 0.5rem; }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; margin-bottom: 3rem; max-width: 640px; }

/* ─── CARD ──────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid rgba(201,150,58,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(201,150,58,0.35); }

/* ─── GRID ──────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ─── BUTTON ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: var(--transition); border: none;
}
.btn-primary { background: var(--maroon); color: var(--white); }
.btn-primary:hover { background: var(--maroon-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,26,26,0.3); }
.btn-outline { background: transparent; color: var(--maroon); border: 1.5px solid var(--maroon); }
.btn-outline:hover { background: var(--maroon); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── ORNAMENT ──────────────────────────────── */
.ornament {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 2.5rem;
}
.ornament-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.ornament-diamond {
  width: 8px; height: 8px;
  background: var(--gold); transform: rotate(45deg);
}

/* ─── TABLE ─────────────────────────────────── */
.styled-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem;
}
.styled-table th {
  background: var(--maroon); color: var(--white);
  padding: 12px 16px; text-align: left;
  font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.styled-table td {
  padding: 11px 16px; border-bottom: 1px solid rgba(201,150,58,0.12);
  color: var(--text-mid);
}
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: var(--gold-pale); }

/* ─── TAG ───────────────────────────────────── */
.tag {
  display: inline-block; padding: 4px 12px;
  background: var(--gold-pale); color: var(--gold);
  border-radius: 20px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: 1px solid rgba(201,150,58,0.3);
}

/* ─── QUOTE BLOCK ───────────────────────────── */
.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--maroon-dark);
  margin: 1.5rem 0;
}

/* ─── STEP FLOW ─────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--maroon); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700;
}
.step-body h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.step-body p { font-size: 0.9rem; margin-bottom: 0; }

/* ─── INFO STRIP ────────────────────────────── */
.info-strip {
  background: var(--maroon); color: var(--white);
  padding: 0.6rem 2rem;
  display: flex; align-items: center; gap: 2rem;
  font-size: 0.8rem; overflow: hidden;
  position: relative; z-index: 998;
}
.info-strip::before { content: '📢'; margin-right: 6px; }
.info-strip a { color: var(--gold-light); }

/* ─── FOOTER ────────────────────────────────── */
footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,0.75);
  padding: 5rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-gold-rule { width: 40px; height: 2px; background: var(--gold); margin: 1rem 0; }
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 1.2rem;
  position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 1.5px; background: var(--gold);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.85rem; }
.footer-contact-item .ico { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: var(--gold-light); }
.social-row { display: flex; gap: 10px; margin-top: 1rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,150,58,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 0.85rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ─── ALT SECTIONS ──────────────────────────── */
.section-alt { background: var(--cream-dark); }
.section-dark { background: var(--maroon); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }
.section-dark p { color: rgba(255,255,255,0.75); }

/* ─── ACCORDION ─────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 1px; }
.accordion-item { background: var(--white); border: 1px solid rgba(201,150,58,0.15); border-radius: var(--radius); overflow: hidden; }
.accordion-header {
  width: 100%; text-align: left; padding: 1.1rem 1.5rem;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 500;
  color: var(--text); transition: var(--transition);
}
.accordion-header:hover { background: var(--gold-pale); color: var(--maroon); }
.accordion-icon { font-size: 1.2rem; color: var(--gold); transition: var(--transition); }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 1rem 1.5rem 1.4rem; font-size: 0.9rem; color: var(--text-mid); border-top: 1px solid rgba(201,150,58,0.12); }
.accordion-item.open .accordion-body { display: block; }

/* ─── STAT CARD ─────────────────────────────── */
.stat-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(201,150,58,0.15);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--maroon), var(--gold));
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 700;
  color: var(--maroon); line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.82rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }

/* ─── NOTICE TICKER ─────────────────────────── */
.notice-ticker {
  background: var(--maroon-dark);
  color: var(--white); padding: 10px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex; animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  padding: 0 3rem; font-size: 0.85rem;
  display: flex; align-items: center; gap: 10px;
}
.ticker-item .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .nav-title-sub { display: none; }
}

/* ─── UTILITIES ─────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-maroon { color: var(--maroon); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.img-placeholder {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; letter-spacing: 1px;
  border-radius: var(--radius);
}
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,150,58,0.4), transparent); margin: 2.5rem 0; }

/* ─── HERO SLIDER ───────────────────────────── */
.hero-slider { position: relative; overflow: hidden; height: 520px; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s ease;
  display: flex; align-items: center; justify-content: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.slide-bg-inner {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,16,16,0.88) 0%, rgba(107,26,26,0.7) 50%, rgba(26,18,8,0.85) 100%);
}
.slide-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 800px; padding: 2rem;
}
.slide-content .label {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem; display: block;
}
.slide-content h1 { color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.slide-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }
.slide-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.slider-controls {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: var(--transition); border: none;
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  left: 0; right: 0; z-index: 3;
  display: flex; justify-content: space-between; padding: 0 1.5rem;
  pointer-events: none;
}
.slider-arrow {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  pointer-events: all; transition: var(--transition);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); }

/* ─── TESTIMONIAL ───────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(201,150,58,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: 0.8;
  color: var(--gold-pale); position: absolute;
  top: 1rem; left: 1.2rem; z-index: 0;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic; color: var(--text-mid);
  line-height: 1.7; position: relative; z-index: 1; margin-bottom: 1.2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--maroon); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; font-weight: 700;
  font-family: 'Cormorant Garamond', serif; flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.t-role { font-size: 0.78rem; color: var(--text-light); }

/* ─── NEWS CARD ─────────────────────────────── */
.news-card {
  background: var(--white);
  border: 1px solid rgba(201,150,58,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.news-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.news-card-img .img-icon { font-size: 2.5rem; opacity: 0.5; }
.news-card-body { padding: 1.5rem; }
.news-date { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.5px; margin-bottom: 0.5rem; }
.news-card-body h4 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--maroon-dark); line-height: 1.3; }
.news-card-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1rem; }
.news-link { font-size: 0.82rem; font-weight: 600; color: var(--maroon); letter-spacing: 0.5px; }
.news-link:hover { color: var(--gold); }

/* ─── FACULTY CARD ──────────────────────────── */
.faculty-card {
  background: var(--white);
  border: 1px solid rgba(201,150,58,0.15);
  border-radius: var(--radius);
  text-align: center; padding: 2rem 1.5rem;
  transition: var(--transition);
}
.faculty-card:hover { box-shadow: var(--shadow); border-color: rgba(201,150,58,0.4); }
.faculty-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; color: var(--white);
  border: 3px solid var(--gold-pale);
}
.faculty-card h4 { font-size: 1.05rem; margin-bottom: 0.2rem; color: var(--maroon-dark); }
.faculty-card .dept { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.5rem; }
.faculty-card .tag { font-size: 0.7rem; }

/* ─── GALLERY GRID ──────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item .g-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(74,16,16,0.85));
  padding: 1.5rem 1rem 0.8rem;
  font-size: 0.85rem; font-weight: 500; color: var(--white);
  letter-spacing: 0.5px; text-align: center;
}
.gallery-item .g-icon { font-size: 2.8rem; opacity: 0.35; color: var(--white); }

/* ─── PROGRAMME CARD ────────────────────────── */
.prog-card {
  background: var(--white);
  border: 1px solid rgba(201,150,58,0.15);
  border-radius: var(--radius); padding: 2rem;
  border-top: 3px solid var(--maroon);
  transition: var(--transition);
}
.prog-card:hover { border-top-color: var(--gold); box-shadow: var(--shadow); }
.prog-icon { font-size: 2rem; margin-bottom: 1rem; }
.prog-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.prog-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.2rem; }
.prog-subjects { display: flex; flex-wrap: wrap; gap: 6px; }
.prog-sub {
  font-size: 0.72rem; padding: 3px 10px;
  background: var(--cream-dark); color: var(--text-mid);
  border-radius: 12px; border: 1px solid rgba(201,150,58,0.2);
}

/* ─── BREADCRUMB ────────────────────────────── */
.breadcrumb-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(201,150,58,0.15);
  padding: 0.7rem 2rem;
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-light);
}
.breadcrumb-inner a { color: var(--maroon); }
.breadcrumb-inner span { color: rgba(107,26,26,0.4); }
