/* ============================================
   HCUS Summer Camp - Static HTML/CSS/JS
   Converted from React - Same sections as design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  --background: hsl(210, 45%, 7%);
  --foreground: hsl(40, 30%, 92%);
  --card: hsl(210, 35%, 11%);
  --primary: hsl(0, 72%, 38%);
  --primary-foreground: hsl(40, 30%, 96%);
  --secondary: hsl(40, 45%, 55%);
  --muted: hsl(210, 30%, 15%);
  --muted-foreground: hsl(210, 15%, 60%);
  --accent: hsl(40, 55%, 50%);
  --ivory: hsl(40, 40%, 95%);
  --ivory-foreground: hsl(210, 45%, 7%);
  --border: hsl(210, 20%, 20%);
  --parchment-dark: hsl(40, 25%, 88%);
  --radius: 0.25rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  /* background: var(--background); */
  color: var(--foreground);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Header / Navbar ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow 0.5s, background 0.5s;
}

.site-header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}

.site-header .inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo-img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .site-header .inner { height: 5rem; padding: 0 1.5rem; }
  .site-header .logo-img { height: 3.5rem; }
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .nav-desktop a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    transition: color 0.3s;
  }
  .nav-desktop a:hover { opacity: 0.7; }
  .nav-ctas {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .nav-ctas a {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: var(--radius);
    transition: all 0.3s;
  }
  .nav-ctas .outline {
    border: 1px solid var(--primary);
    color: var(--primary);
  }
  .nav-ctas .outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
  }
  .nav-ctas .solid {
    background: var(--primary);
    color: var(--primary-foreground);
  }
  .nav-ctas .solid:hover { opacity: 0.9; }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle .icon-use {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 4rem;
  background: white;
  z-index: 40;
  padding: 2rem 1.5rem 2.5rem;
  overflow-y: auto;
}

.mobile-menu.is-open { display: flex; flex-direction: column; }

@media (min-width: 768px) { .mobile-menu { top: 5rem; } }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mobile-menu nav a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}

.mobile-menu .ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu .ctas a {
  text-align: center;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--primary);
  color: var(--primary);
  transition: all 0.3s;
}

.mobile-menu .ctas a.solid {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

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

.hero .video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero .video-wrap .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.65), rgba(0,0,0,0.85));
  z-index: 1;
}

.hero .content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 4rem 1rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    align-items: flex-start;
    padding-top: 5rem;
  }
  .hero .content {
    padding-top: 2rem;
  }
}

.hero .logos-box,
.hero .hero-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  /* margin-bottom: 2.5rem; */
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  width: fit-content;
  max-width: 100%;
}

.hero .hero-banner .hero-logo {
  height: auto;
  display: block;
  object-fit: contain;
}

.hero .hero-banner .hcus-logo {
  max-height: 3.5rem;
  width: auto;
}

.hero .hero-banner .lwl-logo {
  max-height: 2.75rem;
  width: auto;
}

.hero .logos-box img:first-of-type { height: 2.5rem; }
.hero .logos-box img:last-of-type { height: 2rem; }
.hero .logos-box .vline { width: 1px; height: 2rem; background: rgba(0,0,0,0.2); }

@media (min-width: 640px) {
  .hero .logos-box img:first-of-type { height: 3rem; }
  .hero .logos-box img:last-of-type { height: 2.25rem; }
  .hero .logos-box .vline { height: 2.5rem; }
  .hero .hero-banner .hcus-logo { max-height: 3.5rem; }
  .hero .hero-banner .lwl-logo { max-height: 2.75rem; }
}

.hero .eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D4AF37;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 1.05;
  color: white;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.8);
  margin: 0 0 0.5rem;
}

.hero .subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #D4AF37;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  margin-top: 1rem;
}

.hero .location {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}

.hero .location strong { color: white; font-style: normal; font-weight: 600; }

@media (min-width: 640px) {
  .hero .eyebrow { font-size: 1.125rem; }
  .hero h1 { font-size: 3rem; }
  .hero .subtitle { font-size: 1.875rem; }
  .hero .location { font-size: 1.5rem; }
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3.75rem; }
  .hero .subtitle { font-size: 2.25rem; }
  .hero .location { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
  .hero .subtitle { font-size: 3rem; }
  .hero .location { font-size: 2.25rem; }
}

.hero .dates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 1.5rem 0 2.5rem;
}

.hero .dates .cohort {
  text-align: center;
}

.hero .dates .cohort-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4AF37;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero .dates .cohort-dates {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  justify-content: center;
}

.hero .cta-row a {
  padding: 0.9rem 1.8rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s;
  white-space: nowrap;
}

.hero .cta-row .outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #ffffff;
}

.hero .cta-row .outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.hero .cta-row .solid {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 30px rgba(139,0,0,0.35);
}

.hero .cta-row .solid:hover {
  box-shadow: 0 8px 40px rgba(139,0,0,0.55);
  opacity: 0.9;
}

.hero .scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Section common ---------- */
.section {
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .section { padding: 5rem 1.5rem; }
  .section-padding { padding: 6rem 1.5rem; }
}

@media (min-width: 768px) {
  .section-padding { padding: 8rem 1.5rem; }
}

.container {
  max-width: 80rem;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: 2.25rem;
  margin: 0 0 1.5rem;
}

.section-head .divider {
  width: 4rem;
  height: 1px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-head h2 { font-size: 3rem; }
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--primary-foreground);
  padding: 4rem 1.5rem;
}

.stats-section .section-head .eyebrow,
.stats-section .section-head h2 { color: var(--ivory-foreground); }

.stats-section .section-head .divider { background: var(--accent); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.stats-grid .stat {
  text-align: center;
}

.stats-grid .stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-top:0px;
  color: var(--ivory-foreground);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stats-grid .stat .label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
}

@media (min-width: 640px) {
  .stats-grid .stat .number { font-size: 4rem; }
  .stats-grid .stat .label { font-size: 1rem; }
}

@media (min-width: 768px) {
  .stats-grid .stat .number { font-size: 5rem; }
}

/* ---------- Diversity / Global ---------- */
.diversity-section {
  background: var(--primary);
  padding: 2.5rem 1rem 3.5rem;
}

.diversity-section .video-banner {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
}

.diversity-section .video-banner video {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.diversity-section .video-banner .overlay {
  position: absolute;
  inset: 0;
 /* lighter / more transparent so video shows through */
background: linear-gradient(
    to top,
    rgba(139, 0, 0, 0.70),
    rgba(139, 0, 0, 0.45),
    rgba(139, 0, 0, 0.20)
  );
  
}

.diversity-section .video-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: var(--primary-foreground);
}

.diversity-section .video-caption .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.diversity-section .video-caption h2 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: var(--primary-foreground);
}

.diversity-section .video-caption .line {
  width: 3rem;
  height: 1px;
  background: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.diversity-section .video-caption p {
  font-size: 0.75rem;
  opacity: 0.8;
  max-width: 36rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .diversity-section .video-banner video { aspect-ratio: 3/1; }
  .diversity-section .video-caption h2 { font-size: 2.25rem; }
  .diversity-section .video-caption p { font-size: 0.875rem; }
}

.diversity-section .map-wrap {
  width: 100%;
  margin-bottom: 1.5rem;
  aspect-ratio: 5/2.5;
  background: var(--primary);
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.diversity-section .map-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
}

.diversity-section .map-wrap .land {
  fill: hsl(210, 35%, 14%);
  stroke: hsl(210, 25%, 20%);
  stroke-width: 0.4;
}

.diversity-section .map-wrap .marker-ring {
  fill: none;
  stroke: hsl(40, 60%, 55%);
  stroke-width: 0.8;
  opacity: 0.3;
}

.diversity-section .map-wrap .marker-dot {
  cursor: pointer;
  transition: all 0.2s ease;
}

.diversity-section .map-wrap .marker-dot:hover {
  opacity: 1;
}

.diversity-section .map-wrap .marker-label {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  fill: #fff;
  text-anchor: middle;
  pointer-events: none;
}

.diversity-section .map-tooltip {
  position: absolute;
  z-index: 50;
  pointer-events: none;
  background: var(--card, #fff);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.diversity-section .map-tooltip.is-visible {
  display: flex;
}

.diversity-section .map-tooltip .tooltip-emoji {
  font-size: 1.5rem;
}

.diversity-section .map-tooltip .tooltip-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-foreground, #1a1a1a);
}

.diversity-section .map-tooltip .tooltip-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.diversity-section .country-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
}

.diversity-section .country-pill {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15) inset;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.diversity-section .country-pill .flag-icon {
  width: 1.25rem;
  height: 0.9rem;
  /* border-radius: 9999px; */
  object-fit: cover;
  /* box-shadow: 0 0 0 1px rgba(0,0,0,0.25); */
}

/* ---------- About ---------- */
.about-section {
  background: var(--primary-foreground);
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.about-section .section-head .eyebrow { color: var(--primary); }
.about-section .section-head h2 { color: var(--ivory-foreground); }
.about-section .section-head .tagline { color: rgba(0,0,0,0.7); font-size: 1.125rem; font-style: italic; margin-bottom: 1.25rem; }
.about-section .section-head .divider { background: var(--accent); }

.about-section .two-col {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
  .about-section .two-col { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.about-section .two-col p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ivory-foreground);
}

.about-section .marquee-wrap {
  overflow: hidden;
}

.about-section .marquee {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-left 40s linear infinite;
}

.about-section .marquee:hover { animation-play-state: paused; }

.about-section .marquee .card {
  flex-shrink: 0;
  width: 280px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.about-section .marquee .card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-section .marquee .card { width: 340px; }
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Program Overview ---------- */
.program-section {
  background: var(--primary);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.program-section .section-head .eyebrow { color: rgba(255,255,255,0.7); }
.program-section .section-head h2 { color: var(--primary-foreground); }
.program-section .section-head .divider { background: rgba(255,255,255,0.4); }

.program-section .slider-wrap {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.program-section .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .program-section .cards { grid-template-columns: repeat(3, 1fr); }
}

.program-section .card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
  text-align: center;
}

.program-section .card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }

.program-section .card .icon { font-size: 2.25rem; margin-bottom: 1.25rem; display: block; }
.program-section .card h3 { font-size: 1.25rem; color: var(--ivory-foreground); margin: 0 0 0.75rem; }
.program-section .card p { font-size: 0.875rem; color: rgba(0,0,0,0.7); line-height: 1.5; }

.program-section .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.program-section .slider-nav:hover { color: white; border-color: rgba(255,255,255,0.6); }
.program-section .slider-nav .icon-nav { display: block; pointer-events: none; }
.program-section .slider-nav.prev { left: -1rem; }
.program-section .slider-nav.next { right: -1rem; }

@media (min-width: 768px) {
  .program-section .slider-nav { width: 2.5rem; height: 2.5rem; }
  .program-section .slider-nav.prev { left: -3.5rem; }
  .program-section .slider-nav.next { right: -3.5rem; }
}

.program-section .dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.program-section .dots button {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.program-section .dots button.active {
  width: 2rem;
  background: var(--primary-foreground);
}

/* ---------- Program Details ---------- */
.details-section {
  background: var(--primary-foreground);
  position: relative;
}

.details-section .campus-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .details-section .campus-img { height: 500px; }
}

.details-section .card-overlap {
  position: relative;
  margin-top: -8rem;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .details-section .card-overlap { margin-top: -10rem; padding: 0 2rem; }
}

.details-section .card-inner {
  max-width: 72rem;
  margin: 0 auto;
  background: var(--primary);
  border-radius: 1rem;
  padding: 2.5rem 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

@media (min-width: 768px) {
  .details-section .card-inner { padding: 5rem 5rem; }
}

.details-section .card-inner .section-head .eyebrow { color: rgba(255,255,255,0.6); }
.details-section .card-inner .section-head h2 { color: var(--primary-foreground); font-size: 1.875rem; }
.details-section .card-inner .section-head .divider { background: rgba(255,255,255,0.3); }

@media (min-width: 768px) {
  .details-section .card-inner .section-head h2 { font-size: 2.5rem; }
}

.details-section .details-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .details-section .details-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.details-section .detail-item {
  flex: 1;
  text-align: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 768px) {
  .details-section .detail-item {
    padding: 0 2rem;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .details-section .detail-item:last-child { border-right: none; }
}

.details-section .detail-item .icon-wrap { margin-bottom: 1.25rem; }
.details-section .detail-item .icon-wrap svg,
.details-section .detail-item .icon-wrap .icon-svg { width: 2rem; height: 2rem; margin: 0 auto; display: block; }
.details-section .detail-item .icon-wrap .icon-svg {
  color: inherit;
  /* Gold icon color: hsl(40, 45%, 55%) = --secondary (applied via filter for img) */
  filter: invert(79%) sepia(28%) saturate(1000%) hue-rotate(360deg);
}
.details-section .detail-item h3 { font-size: 1.25rem; color: var(--primary-foreground); margin: 0 0 1rem; white-space: nowrap; }
.details-section .detail-item .value {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  /* font-family: 'Playfair Display', serif; */
  line-height: 1.6;
  white-space: pre-line;
}

/* Cohort dates layout (one line per cohort, as per design) */
.details-section .detail-item .value.value-cohorts {
  /* font-family: 'Playfair Display', serif; */
  white-space: normal;
  line-height: 1.4;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.details-section .detail-item .value.value-cohorts > div {
  white-space: nowrap;
}

.details-section .fees-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .details-section .fees-grid { grid-template-columns: 1fr 1fr; }
}

.details-section .fee-box {
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 640px) {
  .details-section .fee-box { padding: 2rem; }
}

.details-section .fee-box h3 { font-size: 1.25rem; color: var(--secondary); margin: 0 0 1.25rem; }
.details-section .fee-box .row { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.details-section .fee-box .row .label { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.details-section .fee-box .row .amount { font-size: 1.5rem; color: var(--primary-foreground); font-family: Playfair Display, serif;}
@media (min-width: 640px) {
  .details-section .fee-box .row { flex-direction: row; justify-content: space-between; align-items: baseline; }
  .details-section .fee-box .row .amount { font-size: 1.875rem; font-family: Playfair Display, serif; }
}
.details-section .fee-box .divider { height: 1px; background: rgba(255,255,255,0.15); margin: 1rem 0; }
.details-section .fee-box .note { font-size: 1rem; color: var(--secondary); margin-top: 1.25rem; font-weight: 500; }

.details-section .apply-cta {
  text-align: center;
  margin-top: 3rem;
}

.details-section .apply-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-foreground);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.25rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.details-section .apply-cta a:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: scale(1.02); }
.details-section .apply-cta .deadline { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; }

/* ---------- Fee Inclusions ---------- */
.fee-inclusions-section {
  padding: 2.5rem 1rem 4rem;
  background: hsl(40, 30%, 95%);
  position: relative;
}

.fee-inclusions-section .section-head .eyebrow { color: var(--primary); }
.fee-inclusions-section .section-head h2 { color: var(--ivory-foreground); }
.fee-inclusions-section .section-head .divider { background: var(--primary); }

.fee-inclusions-section .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .fee-inclusions-section .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .fee-inclusions-section .grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.fee-inclusions-section .item {
  text-align: center;
  padding: 2rem;
  border-radius: 0.75rem;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}

.fee-inclusions-section .item:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.fee-inclusions-section .item .icon { font-size: 2.25rem; margin-bottom: 1rem; display: block; }
.fee-inclusions-section .item h3 { font-size: 1.125rem; color: var(--ivory-foreground); margin: 0 0 0.5rem; }
.fee-inclusions-section .item p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ---------- Schedule ---------- */
.schedule-section {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.schedule-section .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: opacity 0.8s;
}

.schedule-section .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.schedule-section .schedule-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

@media (min-width: 1024px) {
  .schedule-section .schedule-inner {
    flex-direction: row;
    padding: 1.5rem 2rem 2.5rem;
    gap: 2rem;
  }
}

.schedule-section .left {
  flex: 0 0 auto;
}

@media (min-width: 1024px) {
  .schedule-section .left { width: 35%; }
}

.schedule-section .left .eyebrow { color: var(--secondary); font-size: 0.75rem; letter-spacing: 0.3em; margin-bottom: 0.5rem; }
.schedule-section .left h2 { font-size: 2.25rem; color: var(--primary-foreground); margin: 0 0 0.5rem; }
.schedule-section .left .divider { width: 3rem; height: 1px; background: var(--secondary); margin-bottom: 1rem; }

.schedule-section .day-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 20rem;
}

.schedule-section .day-buttons button {
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.7);
}

.schedule-section .day-buttons button:hover {
  background: rgba(0,0,0,0.5);
  color: var(--primary-foreground);
}

.schedule-section .day-buttons button.active {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 15px -3px rgba(139,0,0,0.3);
}

.schedule-section .day-title {
  margin-top: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-foreground);
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

@media (min-width: 768px) {
  .schedule-section .day-title { font-size: 2rem; }
}

@media (min-width: 1024px) {
  .schedule-section .day-title { font-size: 2.25rem; }
}

.schedule-section .right {
  flex: 1;
}

@media (min-width: 1024px) {
  .schedule-section .right { width: 65%; }
}

.schedule-section .items {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.schedule-section .day-panel {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.schedule-section .day-panel[data-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes schedule-item-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.schedule-section .day-panel[data-hidden="false"] .item-row {
  animation: schedule-item-in 0.35s ease both;
}

.schedule-section .day-panel[data-hidden="false"] .item-row:nth-child(1) { animation-delay: 0.05s; }
.schedule-section .day-panel[data-hidden="false"] .item-row:nth-child(2) { animation-delay: 0.10s; }
.schedule-section .day-panel[data-hidden="false"] .item-row:nth-child(3) { animation-delay: 0.15s; }
.schedule-section .day-panel[data-hidden="false"] .item-row:nth-child(4) { animation-delay: 0.20s; }
.schedule-section .day-panel[data-hidden="false"] .item-row:nth-child(5) { animation-delay: 0.25s; }
.schedule-section .day-panel[data-hidden="false"] .item-row:nth-child(6) { animation-delay: 0.30s; }
.schedule-section .day-panel[data-hidden="false"] .item-row:nth-child(7) { animation-delay: 0.35s; }
.schedule-section .day-panel[data-hidden="false"] .item-row:nth-child(8) { animation-delay: 0.40s; }
.schedule-section .day-panel[data-hidden="false"] .item-row:nth-child(9) { animation-delay: 0.45s; }

.schedule-section .item-row {
  display: flex;
  gap: 0.75rem;
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}

.schedule-section .item-row:hover { background: rgba(0,0,0,0.5); }

.schedule-section .item-row .time {
  flex-shrink: 0;
  height:28px;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: rgba(139,0,0,0.9);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.schedule-section .item-row h4 { font-size: 1.25rem;  color: var(--primary-foreground); margin: 0 0 0.25rem; }
.schedule-section .item-row .location { font-size: 0.875rem; color: var(--secondary); font-style: italic; }
.schedule-section .item-row .desc { font-size: 0.875rem; margin:2px; color: rgba(255,255,255,0.7); line-clamp: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.schedule-section .note { font-size: 0.7rem; color: rgba(255,255,255,0.5); font-style: italic; padding: 0.5rem 1rem 0 0; }

/* ---------- Outings ---------- */
.outings-section {
  padding: 6rem 1.5rem 3rem;
  background: var(--primary-foreground);
}

.outings-section .section-head .eyebrow { color: var(--primary); }
.outings-section .section-head h2 { color: var(--ivory-foreground); }
.outings-section .section-head .divider { background: var(--primary); }

.outings-section .slider-wrap {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
}

.outings-section .outings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .outings-section .outings-grid { grid-template-columns: repeat(3, 1fr); }
}

.outings-section .outing-card .img-wrap {
  height: 14rem;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .outings-section .outing-card .img-wrap { height: 18rem; }
}

.outings-section .outing-card .img-wrap img,
.outings-section .outing-card .img-wrap video,
.outings-section .outing-card .img-wrap .outing-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.outings-section .outing-card .img-wrap .outing-video {
  background: var(--muted-foreground, #666);
}

.outings-section .outing-card .line { width: 100%; height: 2px; background: var(--primary); margin-bottom: 1.25rem; }
.outings-section .outing-card h3 { font-size: 1.25rem; color: var(--primary); margin: 0 0 0.75rem; }
.outings-section .outing-card .location { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--ivory-foreground); margin-bottom: 0.75rem; }
.outings-section .outing-card .location svg,
.outings-section .outing-card .location .icon-pin { flex-shrink: 0; width: 1rem; height: 1rem; color: rgba(139,0,0,0.7); margin-top: 2px; }
.outings-section .outing-card .location .icon-pin { display: block; }
.outings-section .outing-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.5; }

.outings-section .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s, border-color 0.3s;
}

.outings-section .slider-nav .icon-nav {
  display: block;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.outings-section .slider-nav:hover {
  background: rgba(139,0,0,0.35);
  border-color: rgba(255,255,255,0.25);
}

.outings-section .slider-nav.prev { left: -0.5rem; }
.outings-section .slider-nav.next { right: -0.5rem; }

@media (min-width: 768px) {
  .outings-section .slider-nav { width: 2.5rem; height: 2.5rem; }
  .outings-section .slider-nav.prev { left: -1.5rem; }
  .outings-section .slider-nav.next { right: -1.5rem; }
}

.outings-section .indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 2.5rem;
}

.outings-section .indicators .ind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.outings-section .indicators .ind .bar {
  height: 6px;
  border-radius: 9999px;
  transition: all 0.5s;
  background: var(--muted-foreground);
  opacity: 0.3;
}

.outings-section .indicators .ind.active .bar,
.outings-section .indicators .ind .bar:hover { opacity: 0.5; }
.outings-section .indicators .ind.active .bar { width: 2rem; background: var(--primary); }
.outings-section .indicators .ind .bar { width: 0.75rem; }
.outings-section .indicators .ind span { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.3s; }
.outings-section .indicators .ind.active span { color: var(--primary); font-weight: 600; }

.outings-section .more { text-align: center; margin-top: 2rem; font-family: 'Playfair Display', serif; font-size: 1.125rem; color: rgba(139,0,0,0.8); font-style: italic; }
.outings-section .disclaimer { text-align: center; margin-top: 1rem; font-size: 0.875rem; color: var(--muted-foreground); font-style: italic; max-width: 42rem; margin-left: auto; margin-right: auto; }

/* ---------- Hotel ---------- */
.hotel-section {
  padding: 4rem 1.5rem;
  background: var(--primary);
}

.hotel-section .section-head .eyebrow { color: var(--accent); }
.hotel-section .section-head h2 { color: var(--primary-foreground); }
.hotel-section .section-head .divider { background: rgba(255,255,255,0.3); }

.hotel-section .img-main {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hotel-section .img-main { height: 420px; }
}

.hotel-section .img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hotel-section .img-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .hotel-section .img-grid img { height: 280px; }
}

.hotel-section .text-block {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hotel-section .text-block p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.hotel-section .amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .hotel-section .amenities { grid-template-columns: repeat(4, 1fr); }
}

.hotel-section .amenity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
}

.hotel-section .amenity svg,
.hotel-section .amenity .icon-svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.hotel-section .amenity .icon-svg {
  /* Yellowish-orange icon color per design: #F2C83D (applied via filter for img) */
  filter: invert(88%) sepia(42%) saturate(1200%) hue-rotate(360deg);
}
.hotel-section .address svg,
.hotel-section .address .icon-svg { width: 1rem; height: 1rem; }
.hotel-section .address .icon-svg,
.hotel-section .address .icon-address {
  filter: invert(88%) sepia(42%) saturate(1200%) hue-rotate(360deg);
}
.hotel-section .address .icon-address { display: inline-block; vertical-align: middle; margin-right: 0.25rem; }

.hotel-section .address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* ---------- HCUS ---------- */
.hcus-section {
  padding: 5rem 1.5rem 8rem;
  background: var(--parchment-dark);
}

@media (min-width: 768px) {
  .hcus-section { padding: 50px 1.5rem 50px; }
}

.hcus-section .wrap {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
}

.hcus-section .img-wrap {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {
  .hcus-section .img-wrap { width: 62%; }
}

.hcus-section .img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hcus-section .img-wrap img { aspect-ratio: auto; height: 720px; }
}

.hcus-section .card-overlay {
  position: relative;
  margin-top: -3rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  background: var(--primary-foreground);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

@media (min-width: 1024px) {
  .hcus-section .card-overlay {
    position: absolute;
    right: 0;
    top: 12%;
    width: 55%;
    margin: 0;
  }
}

.hcus-section .card-overlay .heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.hcus-section .card-overlay .heading-text {
  max-width: 70%;
}

.hcus-section .card-overlay .eyebrow {
  color: var(--primary);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  margin-bottom: 0.75rem;
}

.hcus-section .card-overlay h2 {
  font-size: 2.25rem;
  color: var(--ivory-foreground);
  margin: 0;
  line-height: 1.2;
}

.hcus-section .card-overlay .logo-small {
  width: 6rem;
  height: auto;
}

@media (min-width: 768px) {
  .hcus-section .card-overlay .logo-small { width: 8rem; }
}

@media (max-width: 639px) {
  .hcus-section .card-overlay .heading-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hcus-section .card-overlay .heading-text {
    max-width: 100%;
  }
}
.hcus-section .card-overlay p { font-size: 1rem; color: rgba(0,0,0,0.7); line-height: 1.6; margin-bottom: 1.25rem; }

/* ---------- Terms ---------- */
.terms-section {
  padding: 6rem 1.5rem 4rem;
  background: var(--primary-foreground);
}

.terms-section .section-head .eyebrow { color: var(--primary); }
.terms-section .section-head h2 { color: var(--ivory-foreground); }
.terms-section .section-head .divider { background: var(--primary); }

.terms-section .tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 2rem;
}

.terms-section .tabs button {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-family: inherit;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.2);
  background: #fff;
  color: rgba(0,0,0,0.75);
  cursor: pointer;
  transition: all 0.3s;
}

.terms-section .tabs button:hover {
  border-color: rgba(139,0,0,0.4);
  color: var(--ivory-foreground);
}

.terms-section .tabs button.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(139,0,0,0.25);
}

.terms-section .tab-panel {
  display: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.terms-section .tab-panel.active {
  display: block;
}

@media (min-width: 768px) {
  .terms-section .tab-panel { padding: 2.5rem 3rem; border-radius: 1.25rem; }
}

.terms-section .tab-panel .head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.terms-section .tab-panel .head span:first-child { font-size: 1.875rem; }
.terms-section .tab-panel .head h3 { font-size: 1.5rem; color: var(--ivory-foreground); margin: 0; font-family: 'Playfair Display', serif; }

.terms-section .tab-panel .terms-list { display: flex; flex-direction: column; gap: 1.5rem; }
.terms-section .tab-panel .term-item {
  display: flex;
  gap: 1rem;
}

.terms-section .tab-panel .term-item .dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(139,0,0,0.55);
  margin-top: 0.5rem;
}

.terms-section .tab-panel .term-item p { font-size: 0.9375rem; line-height: 1.85; color: rgba(0,0,0,0.75); white-space: pre-line; margin: 0; }

.terms-section .footer-note { text-align: center; margin-top: 2rem; font-size: 0.875rem; color: rgba(0,0,0,0.5); font-style: italic; }

/* ---------- Past Professors ---------- */
.professors-section {
  padding: 5rem 1.5rem;
  background: var(--parchment-dark);
  border-top: 1px solid var(--border);
}

.professors-section .section-head .eyebrow { color: var(--primary); }
.professors-section .section-head h2 { color: var(--ivory-foreground); }
.professors-section .section-head .divider { background: var(--primary); }

.professors-section .prof-list { display: flex; flex-direction: column; gap: 4rem; }
@media (min-width: 768px) { .professors-section .prof-list { gap: 5rem; } }

.professors-section .prof-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .professors-section .prof-card { flex-direction: row; gap: 3rem; }
  .professors-section .prof-card.alt { flex-direction: row-reverse; }
  .professors-section .prof-card.alt .bio { text-align: right; }
}

.professors-section .prof-card .photo {
  flex-shrink: 0;
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  border: 4px solid rgba(139,0,0,0.15);
}

@media (min-width: 768px) {
  .professors-section .prof-card .photo { width: 14rem; height: 14rem; }
}

.professors-section .prof-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.professors-section .prof-card .bio h3 { font-size: 1.5rem; color: var(--ivory-foreground); margin: 0 0 0.25rem; }
.professors-section .prof-card .bio .title { font-size: 0.875rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1.25rem; }
.professors-section .prof-card .bio p { font-size: 0.9375rem; color: rgba(0,0,0,0.7); line-height: 1.6; margin: 0; }

/* ---------- Mentors ---------- */
.mentors-section {
  padding: 5rem 1.5rem;
  background: var(--primary);
  overflow: hidden;
}

.mentors-section .section-head .eyebrow { color: rgba(255,255,255,0.8); font-size: 1.125rem; }
.mentors-section .section-head h2 { color: var(--primary-foreground); }
.mentors-section .section-head .divider { background: rgba(255,255,255,0.3); }

.mentors-section .slider-wrap { position: relative; max-width: 64rem; margin: 0 auto; }
.mentors-section .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.3s;
}

.mentors-section .slider-nav:hover { color: white; background: rgba(255,255,255,0.1); }
.mentors-section .slider-nav.prev { left: -0.5rem; }
.mentors-section .slider-nav.next { right: -0.5rem; }
@media (min-width: 768px) {
  .mentors-section .slider-nav.prev { left: -3.5rem; }
  .mentors-section .slider-nav.next { right: 3.5rem; }
}

.mentors-section .mentor-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .mentors-section .mentor-slide { flex-direction: row; gap: 4rem; padding: 0 4rem; }
}

.mentors-section .mentor-slide .photo-wrap {
  flex-shrink: 0;
  width: 14rem;
  height: 14rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
  .mentors-section .mentor-slide .photo-wrap { width: 18rem; height: 18rem; }
}

.mentors-section .mentor-slide .photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.mentors-section .mentor-slide .info { text-align: center; }
@media (min-width: 768px) { .mentors-section .mentor-slide .info { text-align: left; flex: 1; } }
.mentors-section .mentor-slide .info h3 { font-size: 1.875rem; color: var(--primary-foreground); margin: 0 0 0.5rem; }
.mentors-section .mentor-slide .info .role { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1.5rem; }
.mentors-section .mentor-slide .info .line { width: 3rem; height: 1px; background: rgba(255,255,255,0.3); margin-bottom: 1.5rem; }
.mentors-section .mentor-slide .info p { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 32rem; margin: 0; }

.mentors-section .dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.mentors-section .dots button {
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255,255,255,0.3);
}

.mentors-section .dots button.active { width: 2rem; height: 0.625rem; background: var(--primary-foreground); }
.mentors-section .dots button:not(.active) { width: 0.625rem; height: 0.625rem; }
.mentors-section .dots button:not(.active):hover { background: rgba(255,255,255,0.5); }

.mentors-section .counter { text-align: center; margin-top: 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.4); letter-spacing: 0.2em; }

/* ---------- Awards ---------- */
.awards-section {
  position: relative;
  overflow: hidden;
}

.awards-section .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards-section .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.awards-section .section-head {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.awards-section .section-head .eyebrow { color: rgba(255,255,255,0.5); }
.awards-section .section-head h2 { color: var(--primary-foreground); }
.awards-section .section-head .divider { background: rgba(255,255,255,0.3); }

.awards-section .cards-wrap {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

@media (min-width: 768px) {
  .awards-section .cards-wrap { padding-bottom: 8rem; }
}

.awards-section .cards {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .awards-section .cards { grid-template-columns: repeat(3, 1fr); }
}

.awards-section .award-card {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  background: var(--primary-foreground);
}

.awards-section .award-card .img-wrap {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .awards-section .award-card .img-wrap { height: 16rem; }
}

.awards-section .award-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.awards-section .award-card:hover .img-wrap img { transform: scale(1.05); }
.awards-section .award-card .img-wrap .gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent, transparent); }
.awards-section .award-card .img-wrap .icon-wrap {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(139,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.awards-section .award-card .img-wrap .icon-wrap svg { width: 1.25rem; height: 1.25rem; color: var(--primary-foreground); }
.awards-section .award-card .content { padding: 1.5rem; }
.awards-section .award-card .content .line { width: 2.5rem; height: 2px; background: var(--primary); margin-bottom: 1.25rem; }
.awards-section .award-card .content h3 { font-size: 1.125rem; color: var(--ivory-foreground); margin: 0 0 0.75rem; line-height: 1.3; }
.awards-section .award-card .content p { font-size: 0.875rem; color: rgba(0,0,0,0.6); line-height: 1.5; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials-section {
  padding: 4rem 1.5rem;
  background: var(--ivory);
}

.testimonials-section .section-head .eyebrow { color: var(--primary); }
.testimonials-section .section-head h2 { color: var(--ivory-foreground); }
.testimonials-section .section-head .sub { color: var(--accent); font-size: 1rem; font-weight: 500; margin-top: 0.5rem; }
.testimonials-section .section-head .divider { margin-top: 1.5rem; background: var(--primary); }

.testimonials-section .carousel-wrap {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-section .testimonial-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--primary-foreground);
}

@media (min-width: 768px) {
  .testimonials-section .testimonial-card { flex-direction: row; }
  .testimonials-section .testimonial-card.alt { flex-direction: row-reverse; }
}

.testimonials-section .testimonial-card .quote-side {
  flex: 1;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-section .testimonial-card .quote-side { padding: 2rem; }
}

@media (min-width: 1024px) {
  .testimonials-section .testimonial-card .quote-side { padding: 2.5rem; }
}

.testimonials-section .testimonial-card .quote-icon { width: 1.5rem; height: 1.5rem; color: rgba(139,0,0,0.3); margin-bottom: 1rem; }
.testimonials-section .testimonial-card .quote-icon.img { display: block; opacity: 0.4; }
.testimonials-section .testimonial-card blockquote { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ivory-foreground); line-height: 1.6; font-style: italic; margin: 0 0 1.5rem; }
.testimonials-section .testimonial-card .name { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 600; color: var(--ivory-foreground); }
.testimonials-section .testimonial-card .details { font-size: 0.875rem; color: rgba(0,0,0,0.5); margin-top: 0.25rem; }

.testimonials-section .testimonial-card .img-side {
  flex: 1;
  min-height: 280px;
  overflow: hidden;
}

.testimonials-section .testimonial-card .img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-section .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonials-section .nav-wrap button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.2);
  background: transparent;
  color: rgba(0,0,0,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.testimonials-section .nav-wrap button:hover { color: var(--primary); border-color: rgba(139,0,0,0.4); }
.testimonials-section .nav-wrap .dots { display: flex; gap: 0.5rem; }
.testimonials-section .nav-wrap .dots button { width: 0.5rem; height: 0.5rem; border: none; border-radius: 9999px; background: rgba(0,0,0,0.2); padding: 0; }
.testimonials-section .nav-wrap .dots button:hover { background: rgba(0,0,0,0.4); }
.testimonials-section .nav-wrap .dots button.active { width: 2rem; background: var(--primary); }

/* ---------- Gallery ---------- */
.gallery-section {
  /* padding: 4rem 1.5rem; */
  padding: 1.5rem;
  background: var(--primary);
  overflow: hidden;
}

.gallery-section .section-head { margin-bottom: 3rem; }
.gallery-section .section-head .eyebrow { color: var(--accent); }
.gallery-section .section-head h2 { color: var(--primary-foreground); }
.gallery-section .section-head .divider { background: rgba(255,255,255,0.3); }

.gallery-section .marquee-wrap { position: relative; }
.gallery-section .marquee {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-left 60s linear infinite;
}

.gallery-section .marquee:hover { animation-play-state: paused; }

.gallery-section .marquee .card {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .gallery-section .marquee .card { width: 380px; }
}

.gallery-section .marquee .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-section .marquee .card:hover img { transform: scale(1.05); }
.gallery-section .marquee .card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(139,0,0,0.8), transparent, transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery-section .marquee .card:hover .overlay { opacity: 1; }
.gallery-section .marquee .card .label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery-section .marquee .card:hover .label { opacity: 1; }
.gallery-section .marquee-wrap .fade-l { position: absolute; left: 0; top: 0; bottom: 0; width: 4rem; background: linear-gradient(to right, var(--primary), transparent); pointer-events: none; z-index: 10; }
.gallery-section .marquee-wrap .fade-r { position: absolute; right: 0; top: 0; bottom: 0; width: 4rem; background: linear-gradient(to left, var(--primary), transparent); pointer-events: none; z-index: 10; }

/* ---------- Application Process ---------- */
.application-section {
  padding: 3rem 1.5rem 4rem;
  background: var(--ivory);
}

.application-section .section-head .eyebrow { color: var(--primary); font-weight: 600; }
.application-section .section-head h2 { color: var(--ivory-foreground); }
.application-section .section-head .divider { background: var(--primary); }

.application-section .steps {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .application-section .steps { grid-template-columns: repeat(4, 1fr); }
}

.application-section .step {
  text-align: center;
  position: relative;
}

.application-section .step .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  color: var(--primary);
  margin: 0 0 0.75rem;
}

.application-section .step::after {
  content: "";
  position: absolute;
  top: 2rem;
  left: 70%;
  transform: translateX(0.75rem);
  width: calc(70% - 3rem);
  height: 1px;
  background: rgba(139,0,0,0.35);
}

.application-section .step:last-child::after {
  content: none;
}

.application-section .step h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--ivory-foreground); margin: 0 0 0.75rem; }
.application-section .step p { font-size: 1rem; color: rgba(0,0,0,0.6); line-height: 1.5; margin: 0; }

@media (max-width: 767px) {
  .application-section .step::after {
    content: none;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 1.5rem;
}

.site-footer .inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.site-footer h2 { font-size: 1.875rem; margin: 0 0 1.5rem; }
@media (min-width: 768px) { .site-footer h2 { font-size: 3rem; } }
.site-footer .lead { font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 42rem; margin: 0 auto 2.5rem; }
.site-footer .ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.site-footer .ctas a {
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  background: var(--primary-foreground);
  color: var(--primary);
  transition: all 0.3s;
  min-width: 220px;
  text-align: center;
}

.site-footer .ctas a:hover { opacity: 0.9; }
.site-footer .contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer .contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.site-footer .contact a:hover { color: white; }
.site-footer .contact a svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.site-footer .contact a .icon-contact {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 0.25rem;
  filter: brightness(0) invert(0.8);
}
.site-footer .contact a:hover .icon-contact { filter: brightness(0) invert(1); }
.site-footer .bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem; }
.site-footer .bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin: 0; }

/* Utility: hide when data-hidden="true" */
[data-hidden="true"] { display: none !important; }

/* Hero video hide controls */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}



/* ---------- FAQs ---------- */
.faqs-section {
  padding: 4rem 1.5rem !important;
  background: var(--ivory) !important;
}

.faqs-section .section-head .eyebrow {
  color: var(--primary) !important;
  font-weight: 600 !important;
}

.faqs-section .section-head h2 {
  color: var(--ivory-foreground) !important;
}

.faqs-section .section-head .divider {
  background: var(--primary) !important;
}

.faqs-section .faqs-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  max-width: 72rem !important;
  margin: 0 auto !important;
}

.faqs-section .faq-item {
  border-radius: 0 !important;
  overflow: hidden !important;
}

.faqs-section .faq-toggle {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0.9rem 1.25rem !important;
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-align: left !important;
}

.faqs-section .faq-toggle::after {
  content: "" !important;
  width: 0.6rem !important;
  height: 0.6rem !important;
  border-right: 2px solid #fff !important;
  border-bottom: 2px solid #fff !important;
  transform: rotate(45deg) !important;
  transition: transform 0.2s ease !important;
}

.faqs-section .faq-item.open .faq-toggle::after {
  transform: rotate(-135deg) !important;
}

.faqs-section .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  background: #f5f5f5 !important;
  transition: max-height 0.3s ease !important;
  padding: 0 1.25rem !important;
}

.faqs-section .faq-item.open .faq-answer {
  max-height: 500px !important;
  padding: 0.9rem 1.25rem 1.1rem !important;
}

.faqs-section .faq-answer p {
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: rgba(0,0,0,0.7) !important;
  margin: 0 0 0.5rem !important;
}
.faqs-section .faq-answer ul {
    padding-left: 1.25rem;
    margin: 0 0 0.5rem;
  }
  
  .faqs-section .faq-answer li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(0,0,0,0.7);
    margin-bottom: 0.25rem;
  }