:root {
  color-scheme: light;
  font-family: 'Inter', sans-serif;
  --serif: 'Playfair Display', 'Georgia', serif;
  background-color: #ffffff;
  color: #1a1a1a;
  --navy: #0e2a47;
  --navy-deep: #0a1f36;
  --gold: #c9a961;
  --gold-soft: #e8d9ad;
  --forest: #134e3a;
  --forest-soft: #1d6a4e;
  --cream: #f5efe0;
  --cream-soft: #faf6ec;
  --surface: #ffffff;
  --text-muted: #5a5a5a;
  --text-soft: #7a7a7a;
  --border: #e6dfca;
  --shadow: 0 18px 60px rgba(14, 42, 71, 0.08);
  --shadow-card: 0 8px 32px rgba(14, 42, 71, 0.07);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 24px;
}

/* ------- HEADER ------- */
/* Full-bleed sections are sized with 100vw, which includes the scrollbar
   width on desktop browsers — clip the few px of resulting overflow so no
   horizontal scrollbar appears. */
body { overflow-x: hidden; }

.site-header {
  border-bottom: 1px solid rgba(14, 42, 71, 0.08);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  /* Break out of .page-shell so the white background spans the full
     viewport width, while keeping the content aligned with the shell. */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 18px max(24px, calc(50vw - 616px));
}

.header-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Keep the nav anchored right, next to the jubilee emblem, instead of
   drifting to the centre when the emblem occupies the third flex slot.
   Desktop only: in the stacked mobile header the auto margin would force
   the nav to its full unwrapped width and overflow the viewport. */
@media (min-width: 681px) {
  .header-group > .primary-nav { margin-left: auto; }
}

/* Below this width the emblem no longer fits beside the nav and would
   wrap onto its own row, doubling the header height — hide it instead. */
@media (max-width: 1160px) {
  .header-group > .brand-logo { display: none; }
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand-logo, .brand-mark { width: 60px; height: auto; }

.eyebrow {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.brand-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 4px 0 0;
  color: var(--navy);
}

.brand-subtitle {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.primary-nav a,
.primary-nav button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.primary-nav a:hover,
.primary-nav button:hover,
.primary-nav a:focus-visible,
.primary-nav button:focus-visible {
  color: var(--gold);
  outline: none;
}

.nav-dropdown { position: relative; }

.nav-dropdown > button::after {
  content: '▾';
  margin-left: 6px;
  font-size: 0.7rem;
  color: var(--text-soft);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 100;
  padding: 8px 0;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  color: var(--navy);
  font-size: 0.92rem;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--gold);
  background: var(--cream-soft);
}

/* ------- HERO ------- */
.hero {
  position: relative;
  overflow: hidden;
  /* Break out of .page-shell to span the full viewport width */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 56px;
  width: 100vw;
  height: calc(100vh - 94px);
  min-height: 460px;
  display: grid;
  align-items: center;
  background: var(--navy);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 54, 0.55) 0%, rgba(10, 31, 54, 0.75) 100%);
}

.hero-video video,
.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 60px 56px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-logo { width: clamp(120px, 12vw, 180px); margin-bottom: 20px; }

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.06;
  color: #fff;
}

.hero-copy > p {
  margin: 5px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-tagline {
  margin-top: 18px !important;
  color: var(--gold-soft) !important;
  font-style: italic;
  font-size: 1rem !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
}

/* ------- BUTTONS ------- */
.button, .link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.button:hover, .link-button:hover {
  transform: translateY(-1px);
  background: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(14, 42, 71, 0.2);
}

.button::after {
  content: '→';
  font-size: 1rem;
}

.button-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.button-secondary:hover {
  background: var(--navy);
  color: #fff;
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
}

.button-gold:hover { background: #b89548; color: #fff; }

/* ------- SECTIONS ------- */
.section { margin-bottom: 72px; }

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  color: var(--forest);
  font-weight: 700;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

/* ------- GENERIC CARDS ------- */
.content-card,
.info-card,
.event-card,
.stat-card,
.profile-card,
.workshop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.content-card h3,
.info-card h3,
.profile-card h3,
.workshop-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--navy);
}

.content-card p,
.content-card ul,
.profile-card p,
.workshop-card p,
.event-card p {
  margin: 0 0 10px;
  color: var(--text-muted);
  line-height: 1.75;
}

.content-card ul { padding-left: 20px; }
.content-card li { margin-bottom: 10px; color: var(--text-muted); line-height: 1.7; }

/* ------- GRIDS ------- */
.about-grid,
.events-grid,
.alumni-grid,
.contact-grid,
.stats-grid,
.profile-grid,
.workshop-grid,
.details-grid,
.timeline-grid {
  display: grid;
  gap: 24px;
}

.about-grid,
.events-grid,
.contact-grid,
.details-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.timeline-grid,
.workshop-grid,
.profile-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ------- HOME: GLORIOUS JOURNEY CARDS ------- */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.journey-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
  border-top: 4px solid var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-card:nth-child(2) { border-top-color: var(--gold); }
.journey-card:nth-child(3) { border-top-color: var(--navy); }

.journey-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-soft);
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.journey-icon img { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; }

.year-badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.journey-card:nth-child(2) .year-badge { background: var(--gold); color: var(--navy); }
.journey-card:nth-child(3) .year-badge { background: var(--navy); }

.journey-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 700;
}

.journey-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.92rem;
  text-align: justify;
}

.center-cta { display: flex; justify-content: center; margin-top: 36px; }

/* ------- ABOUT: OUR STORY / STATS ------- */
.our-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  padding: 24px 0 48px;
}

.our-story h2 {
  color: var(--forest);
  font-size: 1.8rem;
  margin: 0 0 18px;
}

.our-story p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.our-story-figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-story-figure img { max-width: 360px; }

.stats-strip {
  background: var(--gold-soft);
  border-radius: 16px;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin: 24px 0 48px;
}

.stat-block { text-align: center; }
.stat-block .stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--forest);
  margin: 0;
  line-height: 1;
}
.stat-block .stat-label {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ------- ABOUT: PROGRAM CARDS ------- */
.program-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--forest);
}

.program-card:nth-child(2) { border-top-color: var(--gold); }

.program-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.program-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.program-card:nth-child(2) .program-icon { background: var(--gold); color: var(--navy); }

.program-head h3 { margin: 0; color: var(--navy); font-size: 1.1rem; }

.program-card ul { list-style: none; padding: 0; margin: 0; }
.program-card li {
  padding: 9px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.program-card li::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ------- ABOUT: ACCREDITATIONS ------- */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.accred-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 26px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.accred-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.accred-card:nth-child(2) .accred-icon { background: var(--gold); color: var(--navy); }
.accred-card:nth-child(3) .accred-icon { background: var(--navy); }
.accred-card:nth-child(4) .accred-icon { background: var(--forest-soft); }

.accred-card h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.accred-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ------- ABOUT: CAMPUS FACILITIES ------- */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.facility-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.facility-card .facility-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--gold-soft), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.facility-body { padding: 22px 24px; }
.facility-body h4 { margin: 0 0 12px; color: var(--navy); font-size: 1.05rem; }

.facility-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.facility-row span { display: flex; align-items: center; gap: 6px; }
.facility-row span::before { content: '▸'; color: var(--gold); }

/* ------- ABOUT: STUDENT ACTIVITIES ------- */
.activity-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.activity-pill {
  background: transparent;
  text-align: center;
  padding: 12px 8px;
}

.activity-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 1.3rem;
}

.activity-pill p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

/* ------- LEGACY ------- */
.legacy-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin: 24px 0 48px;
  min-height: 320px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.legacy-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.legacy-banner .legacy-banner-caption {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 60px 40px;
}

.legacy-banner-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--forest));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
}

.legacy-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.legacy-intro h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--forest);
  margin: 0 0 14px;
  font-weight: 700;
}

.legacy-intro p {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.legacy-era-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 56px;
}

.legacy-era-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--forest);
}

.legacy-era-card:nth-child(2) { border-top-color: var(--gold); }
.legacy-era-card:nth-child(3) { border-top-color: var(--navy); }

.legacy-era-card .era-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.legacy-era-card .era-icon img { width: 60px; height: 60px; object-fit: contain; }

.legacy-era-card .era-range {
  display: inline-block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.legacy-era-card h3 {
  margin: 0;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.4;
}

.legacy-footer-block {
  background: var(--navy-deep);
  color: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: start;
}

.legacy-footer-block h3 {
  font-family: var(--serif);
  color: var(--gold);
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.legacy-footer-block p { margin: 0; color: rgba(255,255,255,0.85); line-height: 1.7; }

.legacy-footer-block ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.legacy-footer-block ul a {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 6px;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.legacy-footer-block ul a:hover { background: var(--gold); color: var(--navy); }

.legacy-hero {
  text-align: center;
  padding: 40px 0 32px;
}

.legacy-feather {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.legacy-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.legacy-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 40px 44px;
  box-shadow: var(--shadow-card);
  max-width: 980px;
  margin: 0 auto 40px;
}

.legacy-card p {
  margin: 0 0 18px;
  color: #2a4860;
  line-height: 1.85;
  font-size: 0.96rem;
}

.leader-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
  background: var(--surface);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

.leader-photo {
  border: 4px solid var(--gold-soft);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-soft);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.leader-tag {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.leader-card h2 {
  margin: 4px 0 18px;
  color: var(--navy);
  font-size: 1.7rem;
}

.leader-card p {
  margin: 0 0 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.linked-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.linked-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.linked-card-head { display: flex; align-items: center; gap: 12px; }

.linked-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.linked-card h3 { margin: 0; color: var(--navy); font-size: 1.05rem; }
.linked-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

.linked-card a {
  align-self: flex-start;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ------- MILESTONES: REDESIGNED TIMELINE ------- */
.ms-page-head {
  text-align: center;
  max-width: 720px;
  margin: 32px auto 56px;
}

.ms-page-head h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  color: var(--forest);
  margin: 0 0 14px;
  font-weight: 700;
}

.ms-page-head p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.ms-timeline {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 0 50px;
}

.ms-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 6%, var(--gold) 94%, transparent 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.ms-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 36px;
}

.ms-node {
  grid-column: 2;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.ms-node-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--forest), 0 6px 16px rgba(14, 42, 71, 0.18);
}

.ms-row.jubilee .ms-node-dot {
  width: 32px;
  height: 32px;
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold), 0 0 0 8px rgba(201, 169, 97, 0.22), 0 8px 22px rgba(201, 169, 97, 0.4);
}

.ms-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.ms-row.left .ms-card {
  grid-column: 1;
  margin-right: 22px;
  text-align: right;
}

.ms-row.right .ms-card {
  grid-column: 3;
  margin-left: 22px;
  text-align: left;
}

.ms-card::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--gold-soft);
  transform: translateY(-50%);
}
.ms-row.left .ms-card::after { right: -22px; }
.ms-row.right .ms-card::after { left: -22px; }

.ms-year {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 6px;
  line-height: 1;
}

.ms-title {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.ms-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ms-row.jubilee .ms-card {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  box-shadow: 0 12px 36px rgba(14, 42, 71, 0.25);
}

.ms-row.jubilee .ms-year { color: var(--gold); }
.ms-row.jubilee .ms-title { color: #fff; }
.ms-row.jubilee .ms-title {
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.ms-row.jubilee .ms-desc { color: rgba(255, 255, 255, 0.78); }
.ms-row.jubilee .ms-card::after { background: var(--gold); }

@media (max-width: 880px) {
  .ms-timeline::before { left: 26px; }
  .ms-row { grid-template-columns: 52px 1fr; gap: 0; }
  .ms-row .ms-node { grid-column: 1; justify-content: flex-start; }
  .ms-row.left .ms-card,
  .ms-row.right .ms-card {
    grid-column: 2;
    text-align: left;
    margin: 0 0 0 18px;
  }
  .ms-row.left .ms-card::after,
  .ms-row.right .ms-card::after { left: -18px; right: auto; }
}

/* ------- EVENT PAGES: HERO BAR ------- */
.event-hero {
  background: var(--navy);
  border-radius: 18px 18px 0 0;
  padding: 56px 32px 64px;
  text-align: center;
  color: #fff;
  margin-top: 24px;
}

.event-hero .eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
}

.event-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #fff;
  line-height: 1.1;
  font-weight: 800;
}

.event-hero.compact {
  padding: 34px 28px 38px;
}

.event-hero.compact .eyebrow {
  margin-bottom: 8px;
}

.event-hero.compact h1 {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.3;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto;
}

.event-hero.compact.compact-lg h1 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  font-weight: 800;
}

.event-hero.compact.compact-lg {
  padding: 42px 28px 48px;
}

.event-hero p {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  line-height: 1.7;
}

.event-detail-bar {
  background: var(--cream-soft);
  border-radius: 0 0 18px 18px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-top: 0;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.event-detail-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 1.2rem;
}

.event-detail-text strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}
.event-detail-text span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ------- EVENT PAGES: GUESTS ROW ------- */
.event-section-title {
  text-align: center;
  margin: 48px auto 28px;
  max-width: 720px;
}
.event-section-title h2 {
  font-family: var(--serif);
  color: var(--forest);
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  margin: 0;
  font-weight: 700;
}
.event-section-title p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.guests-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.guests-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
.guests-row.cols-6 { grid-template-columns: repeat(6, 1fr); gap: 16px; }

.guest-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guest-card.role-chief { border-top-color: var(--gold); }
.guest-card.role-honour { border-top-color: var(--forest); }

.guest-card .guest-avatar-lg {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 2px solid var(--border);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-family: var(--serif);
  overflow: hidden;
  position: relative;
}

.guest-card .guest-avatar-lg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guest-card.role-chief .guest-avatar-lg { background: var(--gold-soft); border-color: var(--gold); }
.guest-card.role-honour .guest-avatar-lg { background: #e3efe7; border-color: var(--forest); }

.guest-card .guest-chip {
  display: inline-block;
  background: var(--cream-soft);
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.guest-card.role-chief .guest-chip { background: var(--gold-soft); border-color: var(--gold); color: var(--navy-deep); }
.guest-card.role-honour .guest-chip { background: #e3efe7; border-color: var(--forest); color: var(--forest); }

.guest-card .guest-name-lg {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin: 0 0 6px;
  line-height: 1.3;
}

.guest-card .guest-org-lg {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ------- EVENT PAGES: SCHEDULE CARDS ------- */
.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.schedule-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 4px 14px rgba(14, 42, 71, 0.05);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.schedule-card:hover {
  transform: translateX(2px);
  box-shadow: 0 8px 22px rgba(14, 42, 71, 0.08);
}

.schedule-card.is-anthem { border-left-color: var(--forest); }
.schedule-card.is-finale { border-left-color: var(--navy); background: var(--cream-soft); }

.schedule-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.schedule-card.is-anthem .schedule-pill { background: var(--forest); }
.schedule-card.is-finale .schedule-pill { background: var(--gold); color: var(--navy-deep); }

.schedule-body .schedule-title {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 4px;
}

.schedule-body .schedule-meta {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .guests-row.cols-6 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 880px) {
  .guests-row,
  .guests-row.cols-4,
  .guests-row.cols-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .guests-row,
  .guests-row.cols-4,
  .guests-row.cols-6 { grid-template-columns: repeat(2, 1fr); }
  .schedule-card,
  .schedule-card.has-video { grid-template-columns: 1fr; gap: 10px; padding: 16px 18px; }
  .schedule-pill { justify-self: start; }
  .yt-card { width: 100%; }
  .yt-card img { height: 160px; }
}

/* ------- YouTube session cards on schedule rows ------- */
.schedule-card.has-video { grid-template-columns: 180px 1fr auto; }
.yt-card {
  position: relative;
  display: block;
  width: 136px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 3px 10px rgba(14, 42, 71, 0.12);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  align-self: center;
}
.yt-card img { width: 100%; height: 78px; object-fit: cover; display: block; background: #000; }
.yt-card .yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 28px;
  border-radius: 7px;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.yt-card .yt-play::before {
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 11px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}
.yt-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 0, 0, 0.28); }

/* Compact 6-column speaker cards: uniform height; long affiliations don't stretch the card */
.guests-row.cols-6 .guest-card { padding: 18px 12px; }
.guests-row.cols-6 .guest-avatar-lg { width: 82px; height: 82px; }
.guests-row.cols-6 .guest-name-lg {
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guests-row.cols-6 .guest-org-lg {
  font-size: 0.76rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Feature "watch the full recording" card (event pages) */
.yt-feature {
  max-width: 900px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid #ff0000;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.yt-feature:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255, 0, 0, 0.18); }
.yt-feature .yt-fthumb { position: relative; flex: none; width: 168px; border-radius: 10px; overflow: hidden; }
.yt-feature .yt-fthumb img { width: 100%; height: 96px; object-fit: cover; display: block; background: #000; }
.yt-feature .yt-fthumb .yt-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 30px; border-radius: 7px; background: #ff0000;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.yt-feature .yt-fthumb .yt-play::before {
  content: ""; border-style: solid; border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff; margin-left: 2px;
}
.yt-feature .yt-ftext strong { display: block; color: var(--navy); font-size: 1.02rem; margin-bottom: 3px; }
.yt-feature .yt-ftext span { color: var(--text-muted); font-size: 0.88rem; }
@media (max-width: 560px) {
  .yt-feature { flex-direction: column; text-align: center; }
  .yt-feature .yt-fthumb { width: 100%; }
  .yt-feature .yt-fthumb img { height: 150px; }
}

/* ------- WORKSHOP: HIGHLIGHTS STRIP ------- */
.workshop-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.highlight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-card);
}

.highlight-card .highlight-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.highlight-card .highlight-label {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
}

.highlight-card .highlight-desc {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .workshop-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .workshop-highlights { grid-template-columns: 1fr; }
}

/* ------- WORKSHOP: DAY SECTIONS ------- */
.day-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 900px;
  margin: 56px auto 24px;
}

.day-banner-chip {
  background: var(--navy);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.day-banner-chip.day-two { background: var(--gold); color: var(--navy-deep); }

.day-banner h3 {
  font-family: var(--serif);
  color: var(--forest);
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
}

.day-banner .day-rule {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--gold-soft), transparent);
  border-radius: 2px;
}

.schedule-card.is-lecture { border-left-color: var(--forest); }
.schedule-card.is-lecture .schedule-pill { background: var(--forest); }

.schedule-card.is-panel {
  border-left-color: var(--navy);
  background: #f3f7fa;
}
.schedule-card.is-panel .schedule-pill { background: var(--navy); }

.schedule-card.is-registration { border-left-color: var(--gold); }
.schedule-card.is-registration .schedule-pill { background: var(--gold); color: var(--navy-deep); }

.schedule-card.is-inaugural { border-left-color: var(--navy); background: var(--cream-soft); }
.schedule-card.is-inaugural .schedule-pill { background: var(--navy); }

.schedule-card.is-break { border-left-color: #dcd6c8; background: #faf8f3; }
.schedule-card.is-break .schedule-pill { background: #b4ac9a; color: #fff; }
.schedule-card.is-break .schedule-title { color: var(--text-muted); font-weight: 600; }

/* ------- PROFILE / PRINCIPAL CARDS ------- */
.profile-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.profile-card {
  text-align: center;
  padding: 24px 20px;
}

.profile-card h3 {
  font-size: 0.98rem;
  color: var(--navy);
  margin: 0 0 6px;
}

.profile-card p { font-size: 0.85rem; margin: 0; color: var(--text-muted); }

.profile-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 2px solid var(--border);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.5rem;
  font-family: var(--serif);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  overflow: hidden;
  position: relative;
}

.profile-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

/* ------- GALLERY (showcase carousel) ------- */
.carousel {
  max-width: 1060px;
  margin: 0 auto;
}

.carousel-stage {
  position: relative;
  background: var(--navy-deep);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.carousel-stage img {
  display: block;
  width: 100%;
  height: min(64vh, 600px);
  object-fit: contain;
  cursor: zoom-in;
}

.carousel-caption {
  margin: 0;
  padding: 14px 56px;
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(10, 31, 54, 0.85);
  border-top: 1px solid rgba(201, 169, 97, 0.35);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.carousel-arrow:hover { background: var(--gold); color: #fff; }
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

.carousel-playpause {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.carousel-playpause:hover { background: var(--gold); color: #fff; }

.carousel-thumbs {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scroll-behavior: smooth;
}

.carousel-thumbs::-webkit-scrollbar { height: 6px; }
.carousel-thumbs::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 3px; }

.thumb {
  flex: 0 0 auto;
  width: 150px;
  height: 96px;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb:hover { opacity: 1; }

.thumb.is-active {
  opacity: 1;
  border-color: var(--gold);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 54, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 32px;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 8px;
}

.lightbox-caption {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
}

/* ------- SITE FOOTER ------- */
.site-footer {
  padding: 32px 0 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: grid;
  gap: 6px;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.site-footer p { margin: 0; }

/* ------- HOME (CLASSIC ARCHIVE STYLE) ------- */
.full-bleed {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(24px, calc(50vw - 600px));
  padding-right: max(24px, calc(50vw - 600px));
}

.classic-dark {
  background: var(--navy-deep);
  color: #fff;
  padding-top: 56px;
  padding-bottom: 56px;
  margin-top: 40px;
  margin-bottom: 0;
}

.classic-dark h2 {
  font-family: var(--serif);
  color: var(--gold);
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 28px;
  font-weight: 700;
}

.classic-dark .jubilee-body {
  max-width: 1080px;
  margin: 0 auto;
  color: #fff;
  text-align: justify;
  line-height: 1.85;
  font-size: 1rem;
}

.classic-events {
  background: #ffffff;
  padding-top: 56px;
  padding-bottom: 64px;
  margin-bottom: 0;
}

.classic-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.classic-events h3 {
  font-family: var(--serif);
  color: var(--navy-deep);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  text-transform: uppercase;
  margin: 0 0 32px;
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.classic-event-item {
  text-align: center;
  margin-bottom: 28px;
}

.classic-event-item .event-date {
  display: block;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 12px;
  font-size: 1rem;
}

.classic-event-item .event-link {
  color: #8a6b2e;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}

.classic-event-item .event-link:hover { color: var(--navy); }

.classic-journey {
  background: #ffffff;
  padding-top: 56px;
  padding-bottom: 64px;
}

.classic-journey .section-heading h2 {
  font-family: var(--serif);
  color: var(--navy-deep);
  font-weight: 700;
}

.classic-journey .section-heading p {
  color: var(--navy);
  font-size: 1rem;
}

.classic-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.classic-journey-card { text-align: center; }

.classic-journey-card .cj-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  opacity: 0.85;
}

.classic-journey-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy-deep);
  margin: 0 0 22px;
  font-weight: 700;
  line-height: 1.4;
}

.classic-journey-card p {
  color: var(--navy-deep);
  text-align: justify;
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}

.pill-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 48px auto 0;
  flex-wrap: wrap;
  max-width: 1100px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #a68240;
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  min-width: 200px;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}

.pill-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-1px);
}

.classic-contact {
  background: var(--navy-deep);
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 0;
}

.classic-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.classic-contact h3 {
  font-family: var(--serif);
  color: var(--gold);
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0 26px;
  font-weight: 700;
}

.classic-contact .contact-body {
  color: #fff;
  text-align: center;
  line-height: 2;
  font-size: 0.98rem;
}

.classic-contact .contact-body a { color: var(--gold); text-decoration: underline; }

.quick-links-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 360px;
  margin: 0 auto;
}

.quick-links-stack a {
  background: #fff;
  color: var(--navy-deep);
  padding: 13px 24px;
  border-radius: 3px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.quick-links-stack a:hover { background: var(--gold-soft); }

/* ------- RESPONSIVE ------- */
@media (max-width: 980px) {
  .our-story { grid-template-columns: 1fr; gap: 32px; }
  .our-story-figure { order: -1; }
  .leader-card { grid-template-columns: 1fr; }
  .event-body { grid-template-columns: 1fr; }

  .timeline::before { left: 24px; }
  .tl-item { grid-template-columns: 60px 1fr; }
  .tl-node { grid-column: 1; justify-content: flex-start; }
  .tl-item .tl-card,
  .tl-item.alt .tl-card,
  .tl-item:not(.alt) .tl-card {
    grid-column: 2 !important;
    text-align: left !important;
    padding: 0 0 0 14px !important;
  }
}

@media (max-width: 980px) {
  .classic-events-grid,
  .classic-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .classic-journey-grid { grid-template-columns: 1fr; gap: 40px; }
  .legacy-era-grid { grid-template-columns: 1fr; }
  .legacy-footer-block { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .page-shell { padding: 0 16px 16px; }
  .site-header { padding-left: 16px; padding-right: 16px; }
  .header-group { flex-direction: column; align-items: stretch; }
  .primary-nav { justify-content: flex-start; gap: 14px; font-size: 0.85rem; }
  .hero-copy { padding: 40px 24px; }
  .legacy-card { padding: 28px 22px; }
  .event-hero { padding: 40px 22px 48px; }
  .pill-btn { min-width: 0; width: 100%; }

  /* Let the brand text shrink and wrap instead of clipping at the
     viewport edge on narrow screens. */
  .brand > div { min-width: 0; }
  .brand-title { font-size: 0.92rem; white-space: normal; overflow-wrap: break-word; }

  /* Carousel: drop the fixed stage height so landscape photos size to
     their natural aspect ratio instead of floating in a letterboxed box. */
  .carousel-stage img { height: auto; max-height: 64vh; }
}

/* =====================================================================
   PROFESSIONAL REDESIGN LAYER
   A purely visual polish layer (no markup/text changes). Built on the
   home page; the shared pieces (header, footer, buttons, tokens) are
   intended to become the site-wide standard.
   ===================================================================== */

:root {
  --rd-ink: #16202e;
  --rd-muted: #5d6878;
  --rd-bg: #f6f7f9;
  --rd-line: #e7e9ee;
  --rd-shadow-sm: 0 2px 10px rgba(14, 42, 71, 0.06);
  --rd-shadow-md: 0 16px 44px rgba(14, 42, 71, 0.12);
  --rd-shadow-lg: 0 30px 80px rgba(10, 31, 54, 0.20);
  --rd-gold-grad: linear-gradient(135deg, #ddc488 0%, #c9a961 48%, #ad8c45 100%);
  --rd-navy-grad: radial-gradient(120% 130% at 50% 0%, #11365e 0%, var(--navy-deep) 62%);
  --rd-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
::selection { background: var(--gold); color: var(--navy-deep); }

/* ---- Shared: gold accent rule under section headings ---- */
.classic-dark h2::after,
.classic-events h3::after,
.classic-journey .section-heading h2::after,
.classic-contact h3::after {
  content: '';
  display: block;
  width: 68px;
  height: 3px;
  margin: 20px auto 0;
  background: var(--rd-gold-grad);
  border-radius: 2px;
}

/* ---- Header ---- */
.site-header {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--rd-line);
}

.primary-nav a,
.nav-dropdown > button {
  padding-bottom: 6px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.28s var(--rd-ease), color 0.2s ease;
}

.primary-nav a:hover,
.nav-dropdown:hover > button { background-size: 100% 2px; }

.dropdown-menu {
  padding: 6px;
  border-color: var(--rd-line);
  border-radius: 14px;
  box-shadow: var(--rd-shadow-md);
}

.dropdown-menu a { border-radius: 9px; transition: background 0.18s ease, color 0.18s ease; }
.dropdown-menu a .nav-date {
  display: block;
  margin-top: 2px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible { background: var(--cream-soft); color: var(--navy); }

/* ---- Hero ---- */
.hero { margin-bottom: 0; }

.hero-video video,
.hero-video img {
  animation: rd-kenburns 26s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes rd-kenburns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.16); }
}

.hero-video::after {
  background:
    radial-gradient(125% 95% at 50% 16%, rgba(10, 31, 54, 0.10) 0%, rgba(10, 31, 54, 0.52) 58%, rgba(7, 22, 40, 0.88) 100%),
    linear-gradient(180deg, rgba(7, 21, 39, 0.28), rgba(7, 21, 39, 0.55));
}

.hero-copy {
  padding: 32px 24px;
  gap: 8px;
  animation: rd-rise 1s var(--rd-ease) both;
}

@keyframes rd-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: clamp(200px, 24vw, 360px);
  margin-bottom: 4px;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 50px rgba(201, 169, 97, 0.30));
  animation: rd-logo-in 1.1s var(--rd-ease) both, rd-logo-float 6s ease-in-out 1.1s infinite;
}

@keyframes rd-logo-in {
  from { opacity: 0; transform: translateY(14px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes rd-logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

.hero-copy h1 {
  background: linear-gradient(180deg, #fbf0cf 0%, #ecd595 28%, #d9b96b 55%, #c2a050 78%, #9c7c38 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.55));
}

.hero-copy h1::after {
  content: '';
  display: block;
  width: 88px;
  height: 3px;
  margin: 22px auto 6px;
  background: var(--rd-gold-grad);
  border-radius: 2px;
}

.hero-copy > p { font-weight: 500; letter-spacing: 0.01em; }
.hero-tagline { font-size: clamp(0.95rem, 1.3vw, 1.15rem) !important; }

.hero-actions .button {
  padding: 15px 34px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
  background: var(--rd-gold-grad);
  border: none;
  box-shadow: 0 14px 34px rgba(201, 169, 97, 0.36);
}

.hero-actions .button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e6d29a 0%, #d2b367 48%, #b8954c 100%);
  box-shadow: 0 20px 46px rgba(201, 169, 97, 0.46);
}

/* ---- Jubilee (dark intro) ---- */
.classic-dark {
  margin-top: 0;
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--rd-navy-grad);
}

.classic-dark .jubilee-body {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.95;
}

/* ---- Events ---- */
.classic-events {
  background: var(--rd-bg);
  padding-top: 92px;
  padding-bottom: 96px;
}

.classic-events-grid { gap: 56px; }

.classic-event-item {
  text-align: left;
  margin-bottom: 18px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  box-shadow: var(--rd-shadow-sm);
  transition: transform 0.2s var(--rd-ease), box-shadow 0.2s var(--rd-ease), border-color 0.2s ease;
}

.classic-event-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--rd-shadow-md);
}

.classic-event-item .event-date {
  text-align: left;
  margin-bottom: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a6843e;
}

.classic-event-item .event-link {
  color: var(--navy-deep);
  text-decoration: none;
  font-weight: 600;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 100% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: color 0.2s var(--rd-ease), background-size 0.25s var(--rd-ease);
}

.classic-event-item .event-link::after {
  content: '→';
  margin-left: 7px;
  display: inline-block;
  transition: transform 0.2s var(--rd-ease);
}

.classic-event-item .event-link:hover {
  color: var(--gold);
  text-decoration: none;
}

.classic-event-item .event-link:hover::after { transform: translateX(3px); }

/* ---- Glorious Journey ---- */
.classic-journey {
  background: #fff;
  padding-top: 92px;
  padding-bottom: 96px;
}

.classic-journey-grid { gap: 32px; }

.classic-journey-card {
  position: relative;
  overflow: hidden;
  padding: 42px 30px 34px;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 18px;
  box-shadow: var(--rd-shadow-sm);
  transition: transform 0.25s var(--rd-ease), box-shadow 0.25s var(--rd-ease), border-color 0.25s ease;
}

.classic-journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--rd-gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--rd-ease);
}

.classic-journey-card:hover {
  transform: translateY(-6px);
  border-color: #dfe3ea;
  box-shadow: var(--rd-shadow-md);
}

.classic-journey-card:hover::before { transform: scaleX(1); }

.classic-journey-card .cj-icon {
  width: 148px;
  height: 148px;
  padding: 5px;
  margin: 0 auto 22px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--rd-shadow-sm);
  opacity: 1;
}

.classic-journey-card p { color: var(--rd-muted); }

/* ---- Pills ---- */
.pill-row { gap: 16px; margin-top: 56px; }

.pill-btn {
  background: #fff;
  color: var(--navy-deep);
  border: 1.5px solid var(--navy-deep);
  border-radius: 999px;
  padding: 13px 28px;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--rd-ease), color 0.2s var(--rd-ease),
              transform 0.2s var(--rd-ease), box-shadow 0.2s var(--rd-ease);
}

.pill-btn:hover {
  background: var(--navy-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--rd-shadow-md);
}

/* ---- Contact (dark) ---- */
.classic-contact {
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--rd-navy-grad);
}

.classic-contact-grid { gap: 64px; }

.classic-contact .contact-body {
  color: rgba(255, 255, 255, 0.85);
  line-height: 2.05;
}

.classic-contact .contact-body a { color: var(--gold-soft); }

.quick-links-stack a {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  transition: background 0.2s var(--rd-ease), color 0.2s var(--rd-ease),
              border-color 0.2s ease, transform 0.2s var(--rd-ease);
}

.quick-links-stack a:hover {
  background: var(--rd-gold-grad);
  color: var(--navy-deep);
  border-color: transparent;
  transform: translateY(-2px);
}

/* ---- Footer (full-width dark, site-wide standard) ---- */
.site-footer {
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 40px 24px 36px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.66);
  border-top: 3px solid var(--gold);
  font-size: 0.88rem;
}

/* ---- Redesign responsive tuning ---- */
@media (max-width: 680px) {
  .classic-dark,
  .classic-events,
  .classic-journey,
  .classic-contact { padding-top: 60px; padding-bottom: 64px; }
  .hero-copy { padding: 64px 22px; }
}

/* =====================================================================
   PROFESSIONAL REDESIGN — SITE-WIDE ROLLOUT
   Extends the home page system to every interior page: one unified
   navy + gold palette (retires the old green), gold accent rules under
   headings, refined cards with a consistent hover lift, and gradient
   dark blocks — so the whole site matches the home page.
   ===================================================================== */

/* Retire the green accent in favour of the navy+gold home palette.
   --forest is used only for accents (icons, top-borders, headings),
   so remapping it recolours the entire site in a single move. */
:root {
  --forest: #0e2a47;       /* was green  → navy   */
  --forest-soft: #1c3f64;  /* was green  → mid navy (keeps subtle 2-tone variety) */
}

/* ---- Interior headings: centered gold accent rule (like home) ---- */
.section-heading h1::after,
.section-heading h2::after,
.legacy-intro h1::after,
.ms-page-head h1::after,
.event-section-title h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--rd-gold-grad);
  border-radius: 2px;
}

.our-story h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 16px 0 0;
  background: var(--rd-gold-grad);
  border-radius: 2px;
}

/* ---- Unified cards: soft shadow + consistent hover lift ---- */
.program-card,
.accred-card,
.facility-card,
.legacy-era-card,
.linked-card,
.guest-card,
.highlight-card,
.profile-card,
.content-card,
.info-card,
.event-card,
.workshop-card {
  box-shadow: var(--rd-shadow-sm);
  transition: transform 0.25s var(--rd-ease), box-shadow 0.25s var(--rd-ease), border-color 0.25s ease;
}

.program-card:hover,
.accred-card:hover,
.facility-card:hover,
.legacy-era-card:hover,
.linked-card:hover,
.guest-card:hover,
.highlight-card:hover,
.profile-card:hover,
.content-card:hover,
.info-card:hover,
.event-card:hover,
.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rd-shadow-md);
}

/* Large article cards: refined soft shadow */
.legacy-card,
.leader-card { box-shadow: var(--rd-shadow-sm); }

/* Timeline cards lift on hover */
.ms-card { transition: transform 0.2s var(--rd-ease), box-shadow 0.2s var(--rd-ease); }
.ms-card:hover { transform: translateY(-3px); box-shadow: var(--rd-shadow-md); }

/* ---- Dark blocks → navy radial gradient (matches home) ---- */
.event-hero,
.legacy-footer-block { background: var(--rd-navy-grad); }

.event-hero .eyebrow { color: var(--gold-soft); }

/* ---- Legacy era icons: larger white badge, like the home journey ---- */
.legacy-era-card .era-icon {
  width: 136px;
  height: 136px;
  background: #fff;
  border-color: var(--rd-line);
  box-shadow: var(--rd-shadow-sm);
}

.legacy-era-card .era-icon img { width: 120px; height: 120px; }

/* Tighter padding on the three legacy era (logo) cards */
.legacy-era-card { padding: 18px 18px 22px; }

/* Leader portrait fills its framed box */
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }

/* About: facility photos fill their image frame */
.facility-card .facility-image img { width: 100%; height: 100%; object-fit: cover; }

/* Guest avatars: larger + crop focused on the face (sits near the top) */
.guest-card .guest-avatar-lg { width: 108px; height: 108px; }
.guest-card .guest-avatar-lg img { object-position: center 22%; }

/* ---- Milestones: year/title colour on the regular (white) cards ---- */
/* Year is navy (gold is reserved for the jubilee cards); title a softer slate. */
.ms-row:not(.jubilee) .ms-year { color: var(--navy-deep); }
.ms-row:not(.jubilee) .ms-title { color: #46566e; }

/* ---- Milestones: jubilee rows as elegant champagne-GOLD cards ---- */
.ms-row.jubilee .ms-card {
  background: linear-gradient(160deg, #fdf4da 0%, #f2dfaf 52%, #e8d094 100%);
  border: 1px solid #dcc488;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 14px 38px rgba(170, 135, 60, 0.24);
}

.ms-row.jubilee .ms-year { color: #8a6a1e; }
.ms-row.jubilee .ms-title { color: var(--navy-deep); }
.ms-row.jubilee .ms-desc { color: #6a5836; }
.ms-row.jubilee .ms-card::after { background: #d8c089; }

/* ---- Milestones: OAK Jubilee — richer gold card with a soft glow ---- */
.ms-row.oak .ms-card {
  background: linear-gradient(160deg, #fcefc1 0%, #efd590 50%, #e2c069 100%);
  border: 1px solid #d8bd6e;
  animation: rd-oak-glow 3s ease-in-out infinite;
}

@keyframes rd-oak-glow {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
                0 0 0 1px rgba(201, 162, 70, 0.35), 0 0 18px rgba(212, 175, 55, 0.38),
                0 14px 40px rgba(160, 125, 50, 0.30);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
                0 0 0 2px rgba(212, 175, 55, 0.5), 0 0 36px rgba(212, 175, 55, 0.62),
                0 16px 46px rgba(160, 125, 50, 0.42);
  }
}

/* Legacy intro tagline on a single line (wraps again on small screens) */
.legacy-intro { max-width: none; }
.legacy-intro p { white-space: nowrap; }

@media (max-width: 820px) {
  .legacy-intro p { white-space: normal; }
}

/* =====================================================================
   CONTACT PAGE — PROFESSIONAL REDESIGN
   Navy gradient hero, coordinator cards with gold-initial avatars and
   call buttons, an icon-led info row, and an embedded campus map.
   ===================================================================== */

.contact-hero {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 64px;
  border-radius: 20px;
  padding: 44px 32px 48px;
  text-align: center;
  color: #fff;
  background: var(--rd-navy-grad);
  box-shadow: var(--rd-shadow-md);
}

/* Subtle decorative gold glow in the corners */
.contact-hero::before,
.contact-hero::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero::before { top: -140px; left: -90px; }
.contact-hero::after { bottom: -160px; right: -100px; }

.contact-hero .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 14px;
  position: relative;
}

.contact-hero h1 {
  margin: 0 auto;
  position: relative;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  max-width: 720px;
}

.contact-hero h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  margin: 22px auto 0;
  background: var(--rd-gold-grad);
  border-radius: 2px;
}

.contact-hero p {
  position: relative;
  margin: 18px auto 0;
  max-width: none;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 1rem;
}

/* ---- Coordinator cards ---- */
.coordinator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.coordinator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 18px;
  padding: 34px 24px 28px;
  box-shadow: var(--rd-shadow-sm);
  transition: transform 0.25s var(--rd-ease), box-shadow 0.25s var(--rd-ease), border-color 0.25s ease;
}

.coordinator-card:hover {
  transform: translateY(-6px);
  border-color: #dfe3ea;
  box-shadow: var(--rd-shadow-md);
}

.coordinator-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--rd-gold-grad);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--border), 0 12px 26px rgba(14, 42, 71, 0.18);
  margin-bottom: 18px;
}

.coordinator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Pull back so the whole face shows; bias the crop toward the head */
.coordinator-avatar--zoom img {
  object-position: center 12%;
}

.coordinator-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
}

.coordinator-role {
  display: inline-block;
  margin: 0 0 18px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.coordinator-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--rd-ease), transform 0.2s var(--rd-ease), box-shadow 0.2s var(--rd-ease);
}

.coordinator-call svg { width: 14px; height: 14px; }

.coordinator-call:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 42, 71, 0.22);
}

/* ---- Info row (Address / Email / Venue) ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: var(--rd-shadow-sm);
  transition: transform 0.25s var(--rd-ease), box-shadow 0.25s var(--rd-ease), border-color 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: #dfe3ea;
  box-shadow: var(--rd-shadow-md);
}

.contact-info-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--rd-navy-grad);
}

.contact-info-icon svg { width: 21px; height: 21px; }

.contact-info-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.contact-info-card p {
  margin: 0 0 6px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-info-card a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}

.contact-info-card a:hover { color: var(--gold); }

/* ---- Embedded campus map ---- */
.contact-map {
  position: relative;
  margin-top: 24px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--rd-line);
  box-shadow: var(--rd-shadow-md);
  line-height: 0;
}

.contact-map iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  filter: grayscale(0.06) contrast(1.02);
}

/* Floating "Get Directions" pill over the map */
.contact-map-directions {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(14, 42, 71, 0.34);
  transition: background 0.2s var(--rd-ease), transform 0.2s var(--rd-ease), box-shadow 0.2s var(--rd-ease);
}

.contact-map-directions svg { width: 16px; height: 16px; }

.contact-map-directions:hover {
  background: var(--rd-gold-grad);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201, 169, 97, 0.4);
}

@media (max-width: 920px) {
  .contact-hero p { white-space: normal; max-width: 640px; }
}

@media (max-width: 680px) {
  .contact-hero { padding: 36px 22px 40px; }
  .contact-map iframe { height: 320px; }
  .contact-map-directions { right: 12px; bottom: 12px; padding: 10px 18px; font-size: 0.85rem; }
}

/* =====================================================================
   SYMPOSIUM / VALEDICTORY EVENT PAGES (14–16 July 2026)
   Intro prose, numbered thematic-area cards, organizing-committee
   groups, and a registration panel — all built on the shared tokens.
   ===================================================================== */

/* ---- Intro prose block ---- */
.event-intro {
  max-width: 900px;
  margin: 0 auto 8px;
}
.event-intro p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1.03rem;
  margin: 0 0 16px;
}
.event-intro p:last-child { margin-bottom: 0; }

/* ---- Numbered thematic / focus-area cards ---- */
.focus-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.focus-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  padding: 24px 26px 24px 66px;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.focus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(14, 42, 71, 0.1);
}
.focus-card .focus-num {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.focus-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.1rem;
}
.focus-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.93rem;
}

/* ---- Organizing committee ---- */
.committee-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.committee-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 28px 12px;
  box-shadow: var(--shadow-card);
}
.committee-group h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.committee-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0 40px;
}
.committee-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  justify-content: space-between;
}
.committee-list .cm-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
}
.committee-list .cm-role {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: right;
}

/* ---- Committee: text-only groups (no photos) — name over designation ---- */
.committee-textgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 14px;
}
.text-person {
  padding: 13px 17px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  background: var(--cream-soft);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.text-person:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 42, 71, 0.08);
}
.tp-name {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.3;
}
.tp-role {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

/* ---- Registration panel ---- */
.reg-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
  align-items: start;
}
.reg-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.12rem;
}
.reg-card p { margin: 0 0 10px; color: var(--text-muted); line-height: 1.7; }
.reg-steps {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.7;
}
.reg-steps li { margin-bottom: 8px; }
.reg-fee {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 16px;
}
.reg-fee strong { font-size: 1.6rem; color: var(--navy-deep); font-weight: 800; }
.reg-fee span { color: var(--text-muted); font-size: 0.9rem; }
.reg-account {
  background: var(--navy-deep);
  color: #fff;
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: var(--shadow-card);
}
.reg-account h3 { color: var(--gold-soft); margin: 0 0 14px; font-size: 1rem; letter-spacing: 0.04em; }
.reg-account dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; }
.reg-account dt { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }
.reg-account dd { margin: 0; font-weight: 600; font-size: 0.95rem; word-break: break-word; }
.reg-cta {
  max-width: 1000px;
  margin: 24px auto 0;
  text-align: center;
}
.reg-cta .reg-deadline {
  display: block;
  margin-top: 14px;
  color: #b23b3b;
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .reg-grid { grid-template-columns: 1fr; }
  .committee-list li { justify-content: flex-start; }
  .committee-list .cm-role { text-align: left; }
}

/* ---- Focus grid: fixed 2-column variant (4-item 2x2 / roomier 7-item) ---- */
.focus-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  gap: 24px;
}
.focus-grid.cols-2.wide { max-width: 1040px; }
.focus-card.span-2 { grid-column: 1 / -1; }

@media (max-width: 680px) {
  .focus-grid.cols-2 { grid-template-columns: 1fr; }
  .focus-card.span-2 { grid-column: auto; }
}

/* ---- Committee: people cards with avatars ---- */
.committee-people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 26px 18px;
  padding-bottom: 12px;
}
.committee-group.single .committee-people {
  grid-template-columns: 180px;
  justify-content: start;
}
.person-card { text-align: center; }
.person-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
  background: var(--rd-gold-grad, linear-gradient(150deg, #f6e3b0, #e4c069));
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--border), 0 8px 20px rgba(14, 42, 71, 0.16);
}
.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.person-tier {
  display: inline-block;
  margin: 0 0 8px;
  padding: 2px 11px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.person-tier.lead { background: var(--gold); color: var(--navy-deep); }
.person-name {
  margin: 0 0 3px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.3;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.person-role {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .committee-people { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); gap: 22px 12px; }
  .person-avatar { width: 80px; height: 80px; font-size: 1.15rem; }
}
