
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 17px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 2px solid #c41e3a; outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }
a { color: #c41e3a; text-decoration: none; }
a:hover { color: #9b1830; }
a:focus-visible { color: #9b1830; }
a:active { color: #9b1830; }
ul { list-style: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #0a1628;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 800px; }
section { padding: 4rem 0; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: opacity 0.3s;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo:hover { color: #d4a843; }
.logo:focus-visible { color: #d4a843; }
.logo:active { color: #d4a843; }
.logo img { height: 56px; width: auto; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}
.main-nav a:hover { color: #d4a843; }
.main-nav a:focus-visible { color: #d4a843; }
.main-nav a:active { color: #d4a843; }
.nav-cta {
  background: #c41e3a !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #a8182f !important; }
.nav-cta:focus-visible { background: #a8182f !important; }
.nav-cta:active { background: #a8182f !important; }
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a1628;
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.05); }
.dropdown-menu a:focus-visible { background: rgba(255,255,255,0.05); }
.dropdown-menu a:active { background: rgba(255,255,255,0.05); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255,255,255,0.5);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.2s;
}
.hero { position: relative; min-height: auto; display: flex; align-items: center; overflow: hidden; }
.hero-video { min-height: 80vh; }
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a1628; /* dark navy fallback before poster/video loads */
}
.hero-video-bg video,
.hero-video-bg .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.4) 40%, rgba(10,22,40,0.6) 70%, rgba(10,22,40,0.95) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 0 3.5rem;
}
.hero-badge {
  display: inline-block;
  color: #d4a843;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  padding: 0.4rem 1.25rem;
  border: 1px solid rgba(212,168,67,0.4);
  border-radius: 50px;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 500;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  color: #d4a843;
  font-size: 1.75rem;
  font-weight: 800;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-credentials {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero-credentials-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.hero-credentials-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.credential-logo {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity 0.3s ease;
}
.credential-logo:hover {
  opacity: 0.9;
}
.credential-logo:focus-visible {
  opacity: 0.9;
}
.credential-logo:active {
  opacity: 0.9;
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroSlideUp {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}
.hero-content h1 {
  animation: heroSlideUp 0.6s ease-out both;
}
.hero-content .hero-subtitle {
  animation: heroFadeUp 0.9s ease-out 0.4s both;
}
.hero-content .hero-cta {
  animation: heroFadeUp 0.9s ease-out 0.6s both;
}
.hero-content .hero-credentials {
  animation: heroFadeUp 0.9s ease-out 0.8s both;
}
.hero-scroll-indicator {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 1.5rem 0 2rem;
}
.hero-scroll-indicator span {
  display: inline-block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-image {
  min-height: 60vh;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  animation: kenburns 25s ease-in-out infinite alternate;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero-image {
    min-height: 40vh;
  }
  .hero-image .hero-bg-img {
    animation: none;
  }
}
.faq-page .hero-bg-img {
  object-position: center 35%;
}
.section-tag {
  display: inline-block;
  color: #c41e3a;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.section-tag-light {
  color: #d4a843;
}
.impact-bar {
  background: #0a1628;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(212,168,67,0.15);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.impact-item {
  padding: 1rem;
  position: relative;
}
.impact-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.impact-number {
  display: inline;
  color: #d4a843;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}
.impact-plus {
  color: #d4a843;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
}
.impact-label {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.video-showcase {
  padding: 5rem 0;
}
.video-embed-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  margin-bottom: 1.25rem;
}
.about-text p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.about-text .btn {
  margin-top: 0.75rem;
}
.about-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  animation: kenburns 25s ease-in-out infinite alternate;
}
.program-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.program-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  color: inherit;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  color: inherit;
}
.program-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  color: inherit;
}
.program-card:active {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  color: inherit;
}
.program-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s;
  animation: kenburns 20s ease-in-out infinite alternate;
}
.program-card:hover .program-card-image img {
  animation-play-state: paused;
  transform: scale(1.05);
}
.program-card:focus-visible .program-card-image img {
  animation-play-state: paused;
  transform: scale(1.05);
}
.program-card:active .program-card-image img {
  animation-play-state: paused;
  transform: scale(1.05);
}
.program-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.4) 100%);
}
.program-card-content {
  padding: 1.75rem;
}
.program-card-tag {
  display: inline-block;
  background: rgba(196,30,58,0.08);
  color: #c41e3a;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.program-card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.program-card-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
.program-card-link {
  display: inline-block;
  color: #c41e3a;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: transform 0.2s;
}
.program-card:hover .program-card-link {
  transform: translateX(4px);
}
.program-card:focus-visible .program-card-link {
  transform: translateX(4px);
}
.program-card:active .program-card-link {
  transform: translateX(4px);
}
.docuseries-section {
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 60%, #c41e3a 150%);
  padding: 5rem 0;
  overflow: hidden;
}
.docuseries-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.docuseries-text h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.docuseries-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.docuseries-text strong {
  color: #d4a843;
}
.docuseries-video .video-embed {
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.placements-section {
  padding: 5rem 0;
}
.levels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.level-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s;
}
.level-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-4px);
}
.level-card:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-4px);
}
.level-card:active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-4px);
}
.level-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c41e3a, #d4a843);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.level-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.level-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}
.partners-bar {
  padding: 3rem 0;
  background: #f7f8fa;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.partners-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partners-logos img {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.partners-logos img:focus-visible {
  opacity: 1;
  filter: grayscale(0%);
}
.partners-logos img:active {
  opacity: 1;
  filter: grayscale(0%);
}
.testimonials-section {
  padding: 5rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.testimonial-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.testimonial-card:active {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.testimonial-quote {
  color: #c41e3a;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: -0.5rem;
  opacity: 0.2;
}
.testimonial-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  color: #0a1628;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}
.testimonial-author span {
  color: #999;
  font-size: 0.85rem;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: #c41e3a;
  color: #fff;
  border-color: #c41e3a;
}
.btn-primary:hover { background: #a8182f; border-color: #a8182f; color: #fff; transform: translateY(-1px); }
.btn-primary:focus-visible { background: #a8182f; border-color: #a8182f; color: #fff; transform: translateY(-1px); }
.btn-primary:active { background: #a8182f; border-color: #a8182f; color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline:focus-visible { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline:active { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }
.btn-gold { background: #d4a843; color: #0a1628; border-color: #d4a843; }
.btn-gold:hover { background: #c49a38; }
.btn-gold:focus-visible { background: #c49a38; }
.btn-gold:active { background: #c49a38; }
.page-header {
  background: #0a1628;
  padding: 8.5rem 0 3rem;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 0.5rem; }
.page-subtitle { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.page-content { padding: 3rem 0 4rem; }
.page-content p { margin-bottom: 1.25rem; font-size: 1.08rem; color: #333; }
.page-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.page-content h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.page-content ul, .page-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.page-content li { margin-bottom: 0.5rem; color: #333; }
.page-content img { border-radius: 12px; margin: 2rem 0; }
.section-dark {
  background: #0a1628;
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-light {
  background: #f7f8fa;
}
.programs-section { padding-bottom: 1.5rem; }
.programs-section + .section-light { padding-top: 2rem; }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.card:focus-visible { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.card:active { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.card-body p { color: #666; font-size: 0.95rem; }
.coach-card { text-align: center; }
.coach-card img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; object-position: top center; margin: 0 auto 1rem; }
.coach-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.coach-card .role { color: #c41e3a; font-weight: 600; font-size: 0.9rem; }
.coach-card .bio { color: #666; font-size: 0.9rem; margin-top: 0.5rem; }
.staff-grid {
  display: grid;
  gap: 2rem;
}
.staff-grid.grid-2-col { grid-template-columns: repeat(2, 1fr); }
.staff-grid.grid-3-col { grid-template-columns: repeat(3, 1fr); }
.staff-grid.grid-1-col { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
.placements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.placement {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.placement .player { font-weight: 700; color: #d4a843; margin-bottom: 0.25rem; }
.placement .school { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.post-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.2s;
  color: inherit;
}
.post-card:hover { transform: translateY(-3px); color: inherit; }
.post-card:focus-visible { transform: translateY(-3px); color: inherit; }
.post-card:active { transform: translateY(-3px); color: inherit; }
.post-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; }
.post-card-body { padding: 1.25rem; }
.post-card-body time { color: #999; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.post-card-body h3 { font-size: 1.1rem; margin-top: 0.5rem; color: #0a1628; }
.blog-hero-section {
  background: #0a1628;
  padding: 9rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(196,30,58,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.blog-hero-tag {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(212,168,67,0.12);
  color: #d4a843;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}
.blog-hero-heading {
  color: #fff;
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
.blog-hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.blog-intro-links {
  background: #0d1b30;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.blog-intro-text {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.blog-intro-text strong { color: #fff; }
.blog-intro-text a {
  color: #d4a843;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,168,67,0.3);
  transition: border-color 0.2s;
}
.blog-intro-text a:hover { border-color: #d4a843; }
.blog-feat-section {
  background: #0d1b30;
  padding: 4rem 0 4.5rem;
}
.blog-feat-header {
  text-align: center;
  margin-bottom: 2rem;
}
.blog-feat-label {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(212,168,67,0.12);
  color: #d4a843;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}
.blog-feat-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  font-weight: 400;
  margin: 0;
}
.blog-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.blog-feat-card {
  position: relative;
  display: block;
  min-height: 440px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.blog-feat-img {
  position: absolute;
  inset: 0;
}
.blog-feat-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
}
.blog-feat-card:hover .blog-feat-img img {
  transform: scale(1.05);
}
.blog-feat-card:focus-visible .blog-feat-img img {
  transform: scale(1.05);
}
.blog-feat-card:active .blog-feat-img img {
  transform: scale(1.05);
}
.blog-feat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    to top,
    rgba(10,22,40,0.95) 0%,
    rgba(10,22,40,0.7) 35%,
    rgba(10,22,40,0.15) 70%,
    transparent 100%
  );
  z-index: 2;
}
.blog-feat-top {
  padding: 1.5rem;
}
.blog-feat-bottom {
  padding: 0 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.blog-feat-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}
.blog-feat-excerpt {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-feat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.blog-feat-footer time {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-feat-link {
  color: #d4a843;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
}
.blog-feat-card:hover .blog-feat-link {
  color: #f0c860;
}
.blog-feat-card:focus-visible .blog-feat-link {
  color: #f0c860;
  letter-spacing: 2.5px;
}
.blog-feat-card:active .blog-feat-link {
  color: #f0c860;
  letter-spacing: 2.5px;
}
.blog-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  border-radius: 3px;
}
.blog-badge-alumni { background: #c41e3a; color: #fff; }
.blog-badge-commit { background: #d4a843; color: #0a1628; }
.blog-badge-highlight { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.blog-badge-recap { background: #1a3a5c; color: #fff; }
.blog-badge-guide { background: #0a4d2e; color: #fff; }
.blog-badge-program { background: #0a1628; color: #d4a843; border: 1px solid rgba(212,168,67,0.4); }
.blog-badge-daily { background: #7c3aed; color: #fff; }
.blog-badge-training { background: #ea580c; color: #fff; }
.blog-stories-section {
  background: #f5f6f8;
  padding: 3.5rem 0 5rem;
}
.blog-stories-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #dde2e8;
}
.blog-stories-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.blog-stories-label {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(10,22,40,0.06);
  color: #0a1628;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 3px;
}
.blog-stories-count {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 500;
}
.blog-stories-filters {
  display: flex;
  gap: 0.35rem;
}
.blog-sfilt {
  background: #fff;
  border: 1px solid #dde2e8;
  color: #64748b;
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-sfilt:hover {
  border-color: #c41e3a;
  color: #c41e3a;
}
.blog-sfilt:focus-visible {
  border-color: #c41e3a;
  color: #c41e3a;
}
.blog-sfilt:active {
  border-color: #c41e3a;
  color: #c41e3a;
}
.blog-sfilt.active {
  background: #0a1628;
  border-color: #0a1628;
  color: #fff;
}
.blog-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}
.blog-story-card {
  position: relative;
  display: block;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.blog-story-img {
  position: absolute;
  inset: 0;
}
.blog-story-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.blog-story-card:hover .blog-story-img img {
  transform: scale(1.05);
}
.blog-story-card:focus-visible .blog-story-img img {
  transform: scale(1.05);
}
.blog-story-card:active .blog-story-img img {
  transform: scale(1.05);
}
.blog-story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(
    to top,
    rgba(10,22,40,0.95) 0%,
    rgba(10,22,40,0.75) 40%,
    rgba(10,22,40,0.15) 80%,
    transparent 100%
  );
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.blog-story-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-story-excerpt {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-story-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.3rem;
}
.blog-story-footer time {
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-story-link {
  color: #d4a843;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  text-decoration: none;
}
.blog-story-card:hover .blog-story-link {
  color: #f0c860;
}
.blog-story-card:focus-visible .blog-story-link {
  color: #f0c860;
  letter-spacing: 2.2px;
}
.blog-story-card:active .blog-story-link {
  color: #f0c860;
  letter-spacing: 2.2px;
}
/* Fallback header (no hero image) */
.post-header { background: #0a1628; padding: 8.5rem 0 3rem; text-align: center; }
.post-header time { color: #d4a843; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
.post-header h1 { color: #fff; margin-top: 0.75rem; font-size: clamp(1.5rem, 3.5vw, 2.25rem); max-width: 780px; margin-left: auto; margin-right: auto; }

/* === Hero Overlay === */
.post-hero-overlay {
  position: relative;
  width: 100%;
  min-height: 400px;
  max-height: 560px;
  overflow: hidden;
  background: #0a1628;
}
.post-hero-overlay img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 560px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.post-hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6rem 0 2.5rem;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.6) 50%, transparent 100%);
}
.post-hero-caption .post-meta {
  justify-content: flex-start;
  margin-bottom: 0.6rem;
}
.post-hero-caption .post-meta time {
  color: #d4a843;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.post-hero-caption .post-meta-sep { color: rgba(255,255,255,0.4); }
.post-hero-caption .post-read-time { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.post-hero-caption h1 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0;
  max-width: 700px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.post-body { padding: 3rem 0; }
.post-body p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; color: #333; }
.post-body h2 { font-size: 1.75rem; color: #0a1628; margin: 3rem 0 1.25rem; padding-bottom: 0.5rem; border-bottom: 3px solid #c41e3a; }
.post-body h3 { font-size: 1.3rem; color: #0a1628; margin: 2rem 0 1rem; }
.post-body h4 { font-size: 1.1rem; color: #0a1628; margin: 1.5rem 0 0.75rem; }
.post-body hr { border: none; height: 1px; background: linear-gradient(to right, transparent, #ddd 20%, #ddd 80%, transparent); margin: 3rem 0; }
.post-body blockquote { border-left: 4px solid #c41e3a; background: #f8f5f0; padding: 1.25rem 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; font-style: italic; color: #444; }
.post-body blockquote p { margin-bottom: 0; font-size: 1.05rem; }
.post-body ul, .post-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.post-body li { font-size: 1.05rem; line-height: 1.7; margin-bottom: 0.5rem; color: #444; }
.post-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 1.5rem 0; }
.post-body a { color: #c41e3a; text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: #0a1628; }
.post-body a:focus-visible { color: #0a1628; }
.post-body a:active { color: #0a1628; }

/* === Two-Column Post Layout === */
.post-layout { padding: 2rem 0 3rem; }
.post-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.post-main { min-width: 0; }
.post-main .post-share { padding: 1.25rem 0; }
.post-main .post-body { padding: 0; }
.post-main .post-body p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; color: #333; }
.post-main .alumni-article-body { padding: 2rem 0; }
.post-main .post-author { padding: 1.5rem 0 0; border-top: 1px solid #eee; }
.post-main .post-author-card { padding: 0; box-shadow: none; background: none; }
.post-main .alumni-bio-footer { padding: 1.5rem 0 0; border-top: 1px solid #eee; }
.post-main .alumni-bio-card { padding: 0; box-shadow: none; background: none; }

/* Sidebar */
.post-sidebar {
  position: sticky;
  top: 5.5rem;
}
.sidebar-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e8e8e8;
}
.sidebar-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0a1628;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #c41e3a;
}
.sidebar-story {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s;
}
.sidebar-story:last-child { border-bottom: none; }
.sidebar-story:hover { background: rgba(0,0,0,0.02); }
.sidebar-story-img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  flex-shrink: 0;
}
.sidebar-story-text {
  flex: 1;
  min-width: 0;
}
.sidebar-story-text time {
  display: block;
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.sidebar-story-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0a1628;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar-story:hover h4 { color: #c41e3a; }

/* Two-column layout responsive */
@media (max-width: 960px) {
  .post-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .post-sidebar {
    position: static;
  }
  .sidebar-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0;
  }
  .sidebar-heading {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .sidebar-section {
    grid-template-columns: 1fr;
  }
  .sidebar-story-img {
    width: 75px;
    height: 50px;
  }
}

.school-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; padding: 2rem; margin: 2rem 0; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.school-card h2 { margin-top: 0; border-bottom: 3px solid #d4a843; }
.school-card--fcp { border: 2px solid #c41e3a; background: linear-gradient(135deg, #fefefe 0%, #fdf5f5 100%); }
.school-card--fcp h2 { border-bottom-color: #c41e3a; }
.school-card .card-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.school-card .card-tag { display: inline-block; padding: 0.3rem 0.75rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; background: #f0f0f0; color: #555; }
.school-card .card-tag--cost { background: #fff8e7; color: #8b6914; }
.school-card .card-tag--location { background: #e8f4ff; color: #1a5276; }
.school-card .card-tag--level { background: #e8ffe8; color: #1a6b1a; }
.school-card h3 { font-size: 1.1rem; color: #0a1628; margin: 1.5rem 0 0.5rem; }
.compare-table-wrap { overflow-x: auto; margin: 2rem 0; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.compare-table thead th { background: #0a1628; color: #fff; padding: 0.85rem 1rem; text-align: left; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.compare-table thead th:first-child { border-radius: 12px 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 12px 0 0; }
.compare-table tbody td { padding: 0.75rem 1rem; border-bottom: 1px solid #eee; color: #444; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: #fafafa; }
.compare-table tbody tr:hover { background: #f5f0e8; }
.compare-table .highlight-row { background: #fdf5f5 !important; font-weight: 600; }
.compare-table .highlight-row td { color: #c41e3a; }
.post-cta { background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%); color: #fff; padding: 2.5rem; border-radius: 14px; text-align: center; margin: 3rem 0; }
.post-cta h3 { color: #d4a843; font-size: 1.4rem; margin: 0 0 0.75rem; }
.post-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; font-size: 1.05rem; }
.post-cta a.cta-btn { display: inline-block; background: #c41e3a; color: #fff; padding: 0.85rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: transform 0.2s; }
.post-cta a.cta-btn:hover { background: #a01830; transform: translateY(-2px); }
.post-cta a.cta-btn:focus-visible { background: #a01830; transform: translateY(-2px); }
.post-cta a.cta-btn:active { background: #a01830; transform: translateY(-2px); }
@media (max-width: 768px) {
  .school-card { padding: 1.25rem; }
  .compare-table { font-size: 0.82rem; }
  .compare-table thead th, .compare-table tbody td { padding: 0.6rem 0.5rem; }
  .post-cta { padding: 1.5rem; }
}
.alumni-article-hero {
  background: linear-gradient(165deg, #0a1628 0%, #0f2038 50%, #0a1628 100%);
  padding: 8rem 0 3.5rem;
  text-align: center;
}
.alumni-article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.alumni-article-category {
  background: #c41e3a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.85rem;
  border-radius: 3px;
}
.alumni-article-hero time {
  color: #d4a843;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.alumni-article-title {
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 800;
}
.alumni-article-lede {
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 1rem auto 0;
}
.journey-card-wrapper {
  background: #f0f2f5;
  padding: 2.5rem 0 1.5rem;
  margin-top: -1px;
}
.journey-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,22,40,0.10), 0 1px 4px rgba(0,0,0,0.06);
}
.journey-card-then,
.journey-card-now {
  position: relative;
  overflow: hidden;
}
.journey-card-then img,
.journey-card-now img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.journey-card-then:hover img,
.journey-card-now:hover img {
  transform: scale(1.04);
}
.journey-card-then:focus-visible img,
.journey-card-now:focus-visible img {
  transform: scale(1.04);
}
.journey-card-then:active img,
.journey-card-now:active img {
  transform: scale(1.04);
}
.journey-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 100%);
  display: flex;
  justify-content: center;
}
.journey-label-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}
.journey-label-then {
  background: rgba(196, 30, 58, 0.9);
  color: #fff;
}
.journey-label-now {
  background: rgba(212, 168, 67, 0.9);
  color: #0a1628;
}
.journey-card-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  background: #fff;
  position: relative;
  z-index: 2;
}
.journey-arrow {
  width: 36px;
  height: 36px;
  background: #0a1628;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a843;
  flex-shrink: 0;
}
.journey-arrow svg { width: 16px; height: 16px; }
.journey-card-caption {
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  margin-bottom: 0;
}
.journey-card-3 {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  max-width: 1080px;
}
.journey-card-video {
  position: relative;
  overflow: hidden;
}
.journey-card-video video {
  width: 100%;
  height: 340px;
  object-fit: cover;
  background: #0a1628;
}
.journey-label-video {
  background: rgba(10, 22, 40, 0.92);
  color: #d4a843;
}
.alumni-stats-bar {
  background: #0a1628;
  padding: 1.75rem 0;
}
.alumni-stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.alumni-stat {
  text-align: center;
}
.alumni-stat-value {
  display: block;
  color: #d4a843;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}
.alumni-stat-label {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.alumni-article-body {
  padding: 3.5rem 0 2rem;
}
.alumni-article-body p {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: #2d3748;
}
.alumni-article-body h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0a1628;
  margin: 3rem 0 1.25rem;
  padding-top: 1rem;
  position: relative;
}
.alumni-article-body h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #c41e3a;
  border-radius: 2px;
}
.alumni-article-body h3 {
  font-size: 1.25rem;
  color: #0a1628;
  margin: 2rem 0 1rem;
}
.alumni-article-body ul,
.alumni-article-body ol {
  margin: 1.25rem 0 1.75rem 1.5rem;
  list-style: none;
}
.alumni-article-body ul li,
.alumni-article-body ol li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: #2d3748;
}
.alumni-article-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: #c41e3a;
  border-radius: 50%;
}
.alumni-article-body strong {
  color: #0a1628;
  font-weight: 700;
}
.alumni-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.alumni-article-body .article-float-img {
  float: right;
  max-width: 260px;
  margin: 0.25rem 0 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
@media (max-width: 768px) {
  .alumni-article-body .article-float-img {
    float: none;
    display: block;
    max-width: 100%;
    margin: 1.5rem auto;
  }
}
.alumni-article-body a {
  color: #c41e3a;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(196,30,58,0.3);
  text-underline-offset: 2px;
}
.alumni-article-body a:hover {
  text-decoration-color: #c41e3a;
}
.alumni-article-body a:focus-visible {
  text-decoration-color: #c41e3a;
}
.alumni-article-body a:active {
  text-decoration-color: #c41e3a;
}
.alumni-article-body hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: 2.5rem 0;
}
.alumni-article-body em {
  color: #64748b;
}
.alumni-article-body blockquote,
.alumni-article-body .pull-quote {
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid #c41e3a;
  background: linear-gradient(135deg, #fef2f4 0%, #fff 100%);
  border-radius: 0 10px 10px 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: #1a1a2e;
  font-style: italic;
}
.alumni-article-body blockquote p {
  margin-bottom: 0;
  color: #1a1a2e;
}
.alumni-article-body blockquote cite,
.alumni-article-body .pull-quote-source {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  color: #c41e3a;
}
.highlight-box {
  background: linear-gradient(135deg, #0a1628 0%, #142240 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  color: #fff;
}
.highlight-box h4 {
  color: #d4a843;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.highlight-box ul {
  margin: 0;
  list-style: none;
}
.highlight-box ul li {
  color: rgba(255,255,255,0.85);
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}
.highlight-box ul li::before {
  background: #d4a843;
}
.highlight-box ul li strong {
  color: #fff;
}
.timeline-stop {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.timeline-pill {
  flex-shrink: 0;
  background: #0a1628;
  color: #d4a843;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  margin-top: 0.3rem;
  white-space: nowrap;
}
.timeline-stop p {
  margin-bottom: 0;
}
.alumni-bio-footer {
  padding: 0 0 3rem;
}
.alumni-bio-card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: #f7f8fa;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}
.alumni-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 3px solid #0a1628;
}
.alumni-bio-info h4 {
  font-size: 1rem;
  color: #0a1628;
  margin-bottom: 0.25rem;
}
.alumni-bio-info p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .alumni-article-hero { padding: 6.5rem 0 2.5rem; }
  .alumni-article-title { font-size: 1.4rem; }
  .alumni-article-lede { font-size: 1rem; }
  .journey-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    max-width: 380px;
  }
  .journey-card-3 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-width: 380px;
  }
  .journey-card-then img,
  .journey-card-now img { height: 200px; }
  .journey-card-video video { height: 200px; }
  .journey-card-divider {
    width: 100%;
    height: 40px;
    flex-direction: row;
  }
  .journey-arrow svg { transform: rotate(90deg); }
  .alumni-stats-row { gap: 1.5rem; }
  .alumni-stat-value { font-size: 1.25rem; }
  .alumni-article-body { padding: 2.5rem 0 1.5rem; }
  .alumni-article-body h2 { font-size: 1.35rem; margin-top: 2.5rem; }
  .highlight-box { padding: 1.5rem; }
  .timeline-stop { flex-direction: column; gap: 0.5rem; }
  .alumni-bio-card { flex-direction: column; text-align: center; }
  .alumni-bio-avatar { margin: 0 auto; }
}
@media (max-width: 480px) {
  .alumni-article-hero { padding: 5.5rem 0 2rem; }
  .alumni-article-title { font-size: 1.25rem; }
  .alumni-stats-row { gap: 1rem; }
  .alumni-stat-value { font-size: 1.1rem; }
  .alumni-stat-label { font-size: 0.6rem; }
  .journey-card-then img,
  .journey-card-now img { height: 160px; object-position: center 25%; }
  .journey-card-video video { height: 160px; }
}
.ghl-form-wrapper {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f7f8fa;
  border-radius: 12px;
}
.ghl-form-wrapper iframe {
  width: 100%;
  border: none;
  min-height: 500px;
}
.cta-section {
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: 12px !important;
  border-top: 4px solid #b22234;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 2rem;
}
.cta-section h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; font-weight: 800; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.site-footer {
  background: #f7f8fa;
  color: #4a4a4a;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid #e0e0e0;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #e0e0e0;
}
.footer-logo img { height: 48px; width: auto; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
}
.footer-social a:hover {
  color: #c41e3a;
  border-color: #c41e3a;
  background: rgba(196,30,58,0.05);
}
.footer-social a:focus-visible {
  color: #c41e3a;
  border-color: #c41e3a;
  background: rgba(196,30,58,0.05);
}
.footer-social a:active {
  color: #c41e3a;
  border-color: #c41e3a;
  background: rgba(196,30,58,0.05);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #e0e0e0;
}
.footer-nav a {
  color: #1a1a2e;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.3rem 0;
}
.footer-nav a:hover { color: #c41e3a; }
.footer-nav a:focus-visible { color: #c41e3a; }
.footer-nav a:active { color: #c41e3a; }
.footer-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-secondary a {
  color: #6b7280;
  font-size: 0.85rem;
  padding: 0.25rem 0;
}
.footer-secondary a:hover { color: #c41e3a; }
.footer-secondary a:focus-visible { color: #c41e3a; }
.footer-secondary a:active { color: #c41e3a; }
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}
.footer-bottom a { color: #6b7280; text-decoration: underline; }
.footer-bottom a:hover { color: #c41e3a; }
.footer-bottom a:focus-visible { color: #c41e3a; }
.footer-bottom a:active { color: #c41e3a; }
@media (max-width: 1024px) {
  .nav-toggle { display: block; z-index: 10; }
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #0a1628;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .main-nav.active { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 0.875rem 1rem; font-size: 1rem; min-height: 48px; }
  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: rgba(255,255,255,0.03);
    min-width: unset;
    border-radius: 0;
  }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open > .dropdown-menu { display: block; }
  .dropdown.open > a::after { transform: rotate(180deg); }
  /* Mobile nav: item separators, prominent Apply CTA, clearer sub-items */
  .main-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .main-nav > ul > li:last-child { border-bottom: none; }
  .main-nav .nav-cta {
    display: block;
    text-align: center;
    padding: 0.875rem 1.5rem !important;
    font-weight: 700 !important;
    border-radius: 8px;
    margin: 0.5rem 0;
  }
  .dropdown-menu a { color: rgba(255,255,255,0.75) !important; }
  .dropdown-menu a:hover, .dropdown-menu a:active { color: #fff !important; background: rgba(255,255,255,0.06); }
  .footer-top { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-social { justify-content: center; }
  .docuseries-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { order: -1; }
  .about-image img { aspect-ratio: 16 / 10; }
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-feature { min-height: 380px; }
  .editorial-sidebar { flex-direction: row; flex-wrap: wrap; }
  .editorial-card { flex: 1 1 calc(50% - 0.5rem); min-width: 260px; }
  .video-hub-grid { grid-template-columns: 1fr; gap: 2rem; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-video { min-height: 70vh; }
  .hero-content h1 { font-size: 1.85rem; }
  .hero-content { padding: 6rem 0 2.5rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .hero-scroll-indicator { display: none; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .impact-item:not(:last-child)::after { display: none; }
  .footer-nav { gap: 0.4rem 1.25rem; }
  .footer-secondary { gap: 0.3rem 1rem; }
  section { padding: 3rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .program-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .ghl-form-wrapper { padding: 1rem; margin: 1rem auto; }
  .page-header { padding: 6rem 0 2rem; }
  .post-header { padding: 6rem 0 2rem; }
  .post-header h1 { max-width: 100%; }
  .post-hero-overlay { min-height: 300px; max-height: 420px; }
  .post-hero-overlay img { min-height: 300px; max-height: 420px; }
  .post-hero-caption { padding: 4rem 0 1.75rem; }
  .post-hero-caption h1 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .video-showcase { padding: 3rem 0; }
  .docuseries-section { padding: 3rem 0; }
  .placements-section { padding: 3rem 0; }
  .partners-logos { gap: 2rem; }
  .partners-logos img { height: 30px; }
  .staff-grid.grid-2-col { grid-template-columns: 1fr; }
  .staff-grid.grid-3-col { grid-template-columns: 1fr; }
  .news-ticker-label { font-size: 0.6rem; padding: 0.5rem 1rem; }
  .ticker-item { font-size: 0.75rem; padding: 0.5rem 1.5rem; }
  .editorial-grid { grid-template-columns: 1fr !important; }
  .editorial-feature { min-height: 0 !important; border-radius: 10px; display: grid; grid-template-columns: 100px 1fr; gap: 0.75rem; position: relative; overflow: hidden; background: #f5f7fa; }
  .editorial-feature-image { position: relative; height: 100%; min-height: 80px; max-height: 120px; }
  .editorial-feature-image img { position: relative; }
  .editorial-overlay { display: none; }
  .editorial-feature-text { position: relative; background: none; padding: 0.5rem 0.75rem 0.5rem 0; display: flex; flex-direction: column; justify-content: center; }
  .editorial-feature-text h3 { font-size: 0.82rem; color: #0a1628; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .editorial-feature-text p { display: none; }
  .editorial-feature-text time { color: #999; font-size: 0.7rem; text-transform: uppercase; }
  .editorial-sidebar { flex-direction: column; }
  .editorial-card { flex: 1 1 100%; min-width: 0; }
  .blog-hero-heading { font-size: clamp(1.6rem, 4.5vw, 2.2rem); }
  .blog-feat-grid { grid-template-columns: 1fr; }
  .blog-feat-card { min-height: 380px; }
  .blog-feat-title { font-size: 1.25rem; }
  .blog-stories-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .blog-story-card { min-height: 280px; }
  .blog-stories-bar { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .blog-stories-filters { flex-wrap: wrap; }
  .blog-intro-text { display: none; }
  .blog-feat-excerpt { display: none; }
  .blog-story-excerpt { display: none; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-section { padding: 3rem 0 2rem; }
  .video-hub-section { padding: 3rem 0; }
  .video-hub-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-quote { font-size: 2.5rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .logo { font-size: 0.95rem; letter-spacing: 0.02em; }
  .hero-video { min-height: 100svh; min-height: 100vh; }
  .hero-content { padding: 5rem 0 2rem; }
  .hero-cta { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-cta .btn { width: auto; min-width: 220px; text-align: center; padding: 0.85rem 2rem; font-size: 0.95rem; }
  .hero-credentials { margin-top: 1.5rem; gap: 0.5rem; }
  .hero-credentials-logos { gap: 1.5rem; }
  .credential-logo { height: 50px; }
  .btn-instagram { width: auto; }
  .placements-grid { grid-template-columns: 1fr 1fr; }
  .coach-card img { width: 120px; height: 120px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .levels-grid { grid-template-columns: 1fr; }
  .editorial-feature { min-height: 0 !important; }
  .editorial-card { grid-template-columns: 100px 1fr; gap: 0.75rem; }
  .editorial-card-image { min-height: 80px; }
  .editorial-card-text { padding: 0.5rem 0.75rem 0.5rem 0; }
  .editorial-card-text h4 { font-size: 0.82rem; }
  .blog-hero-section { padding: 7rem 0 2rem; }
  .blog-hero-heading { font-size: 1.6rem; }
  .blog-hero-desc { font-size: 0.95rem; }
  .blog-feat-section { padding: 2.5rem 0 3rem; }
  .blog-feat-card { min-height: 320px; }
  .blog-feat-title { font-size: 1.1rem; }
  .blog-feat-excerpt { font-size: 0.82rem; }
  .blog-feat-bottom { padding: 0 1.25rem 1.25rem; }
  .blog-stories-grid { grid-template-columns: 1fr; }
  .blog-story-card { min-height: 260px; }
  .blog-story-title { font-size: 1rem; }
  .blog-badge { font-size: 0.58rem; padding: 0.2rem 0.55rem; }
  .blog-sfilt { padding: 0.35rem 0.75rem; font-size: 0.65rem; }
  .instagram-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .instagram-icon { width: 44px; height: 44px; }
  .instagram-icon svg { width: 24px; height: 24px; }
  .news-ticker-label { padding: 0.5rem 0.75rem; font-size: 0.55rem; }
  .news-ticker-label::after { right: -6px; width: 12px; }
  .partners-logos { gap: 1rem; }
  .partners-logos img { height: 24px; }
  .footer-nav a { font-size: 0.85rem; }
  .footer-secondary a { font-size: 0.8rem; }
}
@media (pointer: coarse) {
  .footer-nav a,
  .footer-secondary a,
  .footer-social a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .footer-bottom a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-1-5 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.rounded { border-radius: 12px; }
.iframe-wrapper { border-radius: 12px; overflow: hidden; margin-bottom: 2rem; }
.iframe-responsive { width: 100%; border: none; min-height: 500px; }
.iframe-responsive-tall { width: 100%; border: none; min-height: 600px; }
.map-embed { border: 0; }
iframe { max-width: 100%; }
.page-content iframe, .ghl-form-wrapper iframe { width: 100%; max-width: 100%; }
.news-ticker {
  display: flex;
  align-items: stretch;
  background: #0a1628;
  border-bottom: 2px solid #c41e3a;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.news-ticker-label {
  display: flex;
  align-items: center;
  background: #c41e3a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.news-ticker-label::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  width: 16px;
  background: #c41e3a;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.news-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.news-ticker-content {
  display: flex;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.news-ticker-content:hover {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 2rem 0.4rem 1.5rem;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ticker-item:hover { color: #d4a843; }
.ticker-item:focus-visible { color: #d4a843; }
.ticker-item:active { color: #d4a843; }
.ticker-cat {
  display: inline-block;
  background: rgba(196,30,58,0.25);
  color: #c41e3a;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.newsroom-section {
  padding: 2.5rem 0 3rem;
  background: #fff;
}
.newsroom-section .section-header {
  margin-bottom: 1.5rem;
}
.newsroom-header {
  margin-bottom: 1.5rem;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}
.editorial-feature {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  color: inherit;
  min-height: 480px;
}
.editorial-feature:hover { color: inherit; }
.editorial-feature:focus-visible { color: inherit; }
.editorial-feature:active { color: inherit; }
.editorial-feature-image {
  position: absolute;
  inset: 0;
}
.editorial-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s;
  animation: kenburns 20s ease-in-out infinite alternate;
}
.editorial-feature:hover .editorial-feature-image img {
  animation-play-state: paused;
  transform: scale(1.04);
}
.editorial-feature:focus-visible .editorial-feature-image img {
  animation-play-state: paused;
  transform: scale(1.04);
}
.editorial-feature:active .editorial-feature-image img {
  animation-play-state: paused;
  transform: scale(1.04);
}
.editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.3) 50%, rgba(10,22,40,0.1) 100%);
}
.editorial-feature-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 2;
}
.editorial-cat {
  display: inline-block;
  background: #c41e3a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.editorial-feature-text h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.editorial-feature-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.editorial-feature-text time {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.editorial-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.editorial-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  background: #f7f8fa;
  border-radius: 10px;
  overflow: hidden;
  color: inherit;
  flex: 1;
  max-height: 120px;
}
.editorial-card:hover {
  background: #eef0f4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  color: inherit;
}
.editorial-card:focus-visible {
  background: #eef0f4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  color: inherit;
}
.editorial-card:active {
  background: #eef0f4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  color: inherit;
}
.editorial-card-image {
  height: 100%;
  min-height: 95px;
  max-height: 120px;
  overflow: hidden;
}
.editorial-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s;
}
.editorial-card:hover .editorial-card-image img { transform: scale(1.06); }
.editorial-card:focus-visible .editorial-card-image img { transform: scale(1.06); }
.editorial-card:active .editorial-card-image img { transform: scale(1.06); }
.editorial-card-text {
  padding: 0.75rem 1rem 0.75rem 0;
}
.editorial-cat-sm {
  display: inline-block;
  color: #c41e3a;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.editorial-card-text h4 {
  font-size: 0.88rem;
  line-height: 1.3;
  color: #0a1628;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.editorial-card-text time {
  color: #999;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.facilities-home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.facility-home-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
  color: inherit;
}
.facility-home-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.facility-home-card:hover img {
  animation-play-state: paused;
  transform: scale(1.06);
}
.facility-home-card:focus-visible img {
  animation-play-state: paused;
  transform: scale(1.06);
}
.facility-home-card:active img {
  animation-play-state: paused;
  transform: scale(1.06);
}
.facility-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.facility-home-overlay h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.facility-home-overlay span {
  color: #d4a843;
  font-size: 0.85rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .facilities-home-grid { grid-template-columns: 1fr; }
}
.instagram-section {
  padding: 4rem 0 3rem;
  background: #f7f8fa;
}
.instagram-header {
  text-align: center;
  margin-bottom: 2rem;
}
.instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  margin: 0 auto 1rem;
}
.instagram-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0a1628;
}
.instagram-header p {
  color: #666;
  max-width: 500px;
  margin: 0.5rem auto 0;
  font-size: 0.95rem;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.instagram-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
}
.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.instagram-card:hover img { transform: scale(1.08); }
.instagram-card:focus-visible img { transform: scale(1.08); }
.instagram-card:active img { transform: scale(1.08); }
.instagram-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.instagram-card:hover .instagram-card-overlay { opacity: 1; }
.instagram-card:focus-visible .instagram-card-overlay { opacity: 1; }
.instagram-card:active .instagram-card-overlay { opacity: 1; }
.instagram-card-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 6px;
}
.btn-instagram {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-instagram:hover {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-1px);
}
.btn-instagram:focus-visible {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-1px);
}
.btn-instagram:active {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-1px);
}
.video-hub-section {
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 60%, #c41e3a 180%);
  padding: 5rem 0;
}
.video-hub-section .section-header h2 { color: #fff; }
.video-hub-section .section-header p { color: rgba(255,255,255,0.7); }
.video-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.video-hub-item h3 {
  color: #d4a843;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.video-hub-item .video-embed {
  box-shadow: 0 12px 50px rgba(0,0,0,0.45);
}
.video-hub-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 0.75rem;
}
.cta-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.cta-social a:hover {
  color: #fff;
  border-color: #d4a843;
  background: rgba(212,168,67,0.12);
}
.cta-social a:focus-visible {
  color: #fff;
  border-color: #d4a843;
  background: rgba(212,168,67,0.12);
}
.cta-social a:active {
  color: #fff;
  border-color: #d4a843;
  background: rgba(212,168,67,0.12);
}
.page-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem 0;
}
.page-intro p {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.staff-section {
  padding: 4rem 0;
}
.staff-section > .staff-section-header,
.staff-section > .executive-grid,
.staff-section > .coaching-grid,
.staff-section > .advisory-grid,
.staff-section > .admissions-feature,
.staff-section > .feature-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.staff-section-dark {
  background: #0a1628;
  padding: 4rem 0;
}
.staff-section-dark h2,
.staff-section-dark h3 { color: #fff; }
.staff-section-dark p { color: rgba(255,255,255,0.8); }
.staff-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  color: #c41e3a;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}
.staff-section-dark .section-label {
  color: #d4a843;
}
.gold-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4a843, #c49a38);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.executive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.executive-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.executive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.14);
}
.executive-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.14);
}
.executive-card:active {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.14);
}
.executive-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a1628;
}
.executive-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s;
}
.executive-card:hover .executive-photo img {
  transform: scale(1.04);
}
.executive-card:focus-visible .executive-photo img {
  transform: scale(1.04);
}
.executive-card:active .executive-photo img {
  transform: scale(1.04);
}
.executive-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(0deg, rgba(10,22,40,0.85) 0%, transparent 100%);
}
.exec-title {
  color: #d4a843;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.executive-info {
  padding: 1.75rem;
}
.executive-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.exec-role {
  color: #c41e3a;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.exec-bio {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.exec-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.exec-stat {
  text-align: center;
}
.exec-stat strong {
  display: block;
  color: #c41e3a;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}
.exec-stat span {
  display: block;
  color: #888;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.coach-profile {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.3s;
}
.coach-profile:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-3px);
}
.coach-profile:focus-visible {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-3px);
}
.coach-profile:active {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-3px);
}
.coach-img-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.coach-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.coach-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: #c41e3a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.coach-details h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.coach-title {
  color: #d4a843;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.coach-bio {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.advisor-card {
  text-align: center;
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.advisor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.advisor-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.advisor-card:active {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.advisor-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(212,168,67,0.2);
}
.advisor-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.advisor-role {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.5;
}
.admissions-feature {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
.admissions-feature .advisor-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.admissions-feature .advisor-card h3 {
  color: #fff;
}
.admissions-feature .advisor-role {
  color: rgba(255,255,255,0.7);
}
.admissions-feature .advisor-card img {
  border-color: rgba(212,168,67,0.3);
}
.housing-section {
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.housing-section > .staff-section-header {
  padding: 0 1.5rem;
}
.housing-section-alt {
  background: #f7f8fa;
  max-width: 100%;
  padding: 3rem 0;
}
.housing-section-alt > .staff-section-header,
.housing-section-alt > .housing-layout {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.housing-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
  padding: 0 1.5rem;
}
.housing-layout-reverse {
  direction: rtl;
}
.housing-layout-reverse > * {
  direction: ltr;
}
.housing-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.gallery-main {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.gallery-main:hover img {
  animation-play-state: paused;
  transform: scale(1.03);
}
.gallery-main:focus-visible img {
  animation-play-state: paused;
  transform: scale(1.03);
}
.gallery-main:active img {
  animation-play-state: paused;
  transform: scale(1.03);
}
.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.gallery-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  transition: transform 0.4s;
}
.gallery-row img:hover {
  transform: scale(1.03);
}
.gallery-row img:focus-visible {
  transform: scale(1.03);
}
.gallery-row img:active {
  transform: scale(1.03);
}
.housing-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.housing-info p {
  color: #444;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.housing-highlights {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.highlight-item {
  text-align: center;
  min-width: 70px;
}
.highlight-item strong {
  display: block;
  color: #c41e3a;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}
.highlight-item span {
  display: block;
  color: #888;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.interior-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.interior-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  transition: transform 0.4s;
}
.interior-gallery img:hover {
  transform: scale(1.04);
}
.interior-gallery img:focus-visible {
  transform: scale(1.04);
}
.interior-gallery img:active {
  transform: scale(1.04);
}
.facility-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.facility-stat {
  text-align: center;
  min-width: 100px;
}
.facility-stat strong {
  display: block;
  color: #c41e3a;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.facility-stat span {
  display: block;
  color: #888;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}
.facility-gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}
.facility-main {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.facility-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.facility-main:hover img {
  animation-play-state: paused;
  transform: scale(1.03);
}
.facility-main:focus-visible img {
  animation-play-state: paused;
  transform: scale(1.03);
}
.facility-main:active img {
  animation-play-state: paused;
  transform: scale(1.03);
}
.facility-side {
  border-radius: 14px;
  overflow: hidden;
}
.facility-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s;
}
.facility-side:hover img {
  transform: scale(1.03);
}
.facility-side:focus-visible img {
  transform: scale(1.03);
}
.facility-side:active img {
  transform: scale(1.03);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-4px);
}
.feature-card:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-4px);
}
.feature-card:active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.feature-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.65;
}
.program-highlights {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
}
.program-highlight {
  text-align: center;
  min-width: 100px;
}
.program-highlight strong {
  display: block;
  color: #c41e3a;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}
.program-highlight span {
  display: block;
  color: #888;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.program-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  min-height: 360px;
  transition: transform 0.5s;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.program-image:hover img {
  animation-play-state: paused;
  transform: scale(1.03);
}
.program-image:focus-visible img {
  animation-play-state: paused;
  transform: scale(1.03);
}
.program-image:active img {
  animation-play-state: paused;
  transform: scale(1.03);
}
.program-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.program-details p {
  color: #444;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.program-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.program-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.75rem;
  color: #333;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.program-list li:last-child {
  border-bottom: none;
}
.program-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #c41e3a;
  border-radius: 50%;
}
.program-offers {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.offer-item {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 4px solid #c41e3a;
  transition: transform 0.3s;
}
.offer-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.offer-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.offer-item:active {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.offer-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #0a1628;
}
.offer-item p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.65;
}
@media (max-width: 1024px) {
  .executive-grid { grid-template-columns: 1fr; gap: 2rem; }
  .coaching-grid { grid-template-columns: 1fr; }
  .advisory-grid { grid-template-columns: repeat(3, 1fr); }
  .housing-layout { grid-template-columns: 1fr; gap: 2rem; }
  .housing-layout-reverse { direction: ltr; }
  .facility-gallery { grid-template-columns: 1fr; }
  .facility-side { aspect-ratio: 16 / 7; }
  .program-grid { grid-template-columns: 1fr; gap: 2rem; }
  .program-image img { min-height: 280px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .interior-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .staff-section { padding: 3rem 0; }
  .staff-section-dark { padding: 3rem 0; }
  .executive-photo { aspect-ratio: 3 / 2; }
  .coach-profile {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  .coach-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
  }
  .advisory-grid { grid-template-columns: 1fr; }
  .advisor-card { padding: 2rem 1.5rem; }
  .housing-section { padding: 2rem 0; }
  .housing-section-alt { padding: 2rem 0; }
  .gallery-row img { aspect-ratio: 16 / 10; }
  .housing-highlights { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .facility-stats { gap: 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .program-highlights { gap: 2rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .interior-gallery { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .interior-gallery img { aspect-ratio: 4 / 3; }
  .page-intro { padding: 1.5rem 1rem 0; }
  .page-intro p { font-size: 1.05rem; }
  .exec-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
}
@media (max-width: 480px) {
  .executive-photo { aspect-ratio: 1 / 1; }
  .executive-info { padding: 1.25rem; }
  .executive-info h3 { font-size: 1.25rem; }
  .exec-bio { font-size: 0.88rem; }
  .exec-stat strong { font-size: 1.25rem; }
  .coach-img-wrapper { width: 100px; height: 100px; }
  .facility-stats { gap: 1.5rem; }
  .facility-stat strong { font-size: 1.5rem; }
  .program-highlights { gap: 1.5rem; }
  .program-highlight strong { font-size: 1.4rem; }
  .gallery-row img { aspect-ratio: 16 / 10; }
  .interior-gallery { grid-template-columns: 1fr; }
  .interior-gallery img { aspect-ratio: 4 / 3; }
  .housing-layout { gap: 1.5rem; }
  .offer-item { padding: 1.5rem; }
  .advisor-card img { width: 100px; height: 100px; }
}
.testimonial-spotlight {
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}
.spotlight-quote {
  border: none;
  margin: 0;
  padding: 2rem;
  background: rgba(212, 168, 67, 0.06);
  border-left: 4px solid #d4a843;
  border-radius: 0 12px 12px 0;
}
.spotlight-quote p {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
}
.spotlight-quote cite {
  display: block;
  font-style: normal;
}
.spotlight-quote cite strong {
  display: block;
  font-size: 1.1rem;
  color: #d4a843;
  margin-bottom: 0.25rem;
}
.spotlight-quote cite span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.timeline-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  position: relative;
  transition: transform 0.3s;
}
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
}
.timeline-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
}
.timeline-card:active {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
}
.timeline-month {
  display: inline-block;
  background: #c41e3a;
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.timeline-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #0a1628;
}
.timeline-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2rem 1.5rem;
  border: 1px solid #e5e7eb;
  position: relative;
  transition: transform 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
}
.testimonial-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
}
.testimonial-card:active {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
}
.testimonial-quote-mark {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: #d4a843;
  line-height: 1;
  margin-bottom: -0.5rem;
  opacity: 0.4;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}
.testimonial-author strong {
  display: block;
  font-size: 1rem;
  color: #0a1628;
}
.testimonial-author span {
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .spotlight-quote p { font-size: 1.1rem; }
  .spotlight-quote { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-card { padding: 1.5rem; }
  .testimonial-card { padding: 1.5rem; }
}
.biancardi-duo-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 768px) {
  .page-content .fade-in[style*="border-left: 4px solid"] {
    padding: 1.5rem 1.25rem !important;
    border-radius: 0 8px 8px 0 !important;
    margin-bottom: 2rem !important;
  }
  .page-content p[style*="text-align: justify"],
  .testimonial-card p {
    text-align: left !important;
  }
  .page-content h2[style*="font-size: 2rem"] {
    font-size: 1.5rem !important;
  }
  .page-content p[style*="font-size: 1.1rem"] {
    font-size: 1rem !important;
  }
  .cta-section {
    padding: 2.5rem 1.25rem;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 10px !important;
  }
  .page-content .staff-section-header {
    margin-bottom: 2rem;
  }
  .testimonial-quote-mark {
    font-size: 3rem;
  }
  .page-content .staff-section-dark {
    padding: 2rem 0 !important;
  }
  .program-grid {
    padding: 0 1rem;
    gap: 1.5rem;
  }
  .program-image img {
    min-height: 220px;
  }
  .feature-icon-svg {
    width: 46px;
    height: 46px;
  }
  .feature-icon-svg svg {
    width: 22px;
    height: 22px;
  }
  .program-offers {
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .page-content .fade-in[style*="border-left: 4px solid"] {
    padding: 1.25rem 1rem !important;
  }
  .cta-section {
    padding: 2rem 1rem;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    border-radius: 8px !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  }
  .cta-section h2 {
    font-size: 1.5rem;
  }
  .cta-section .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-section .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  .program-grid {
    padding: 0 0.75rem;
    gap: 1.25rem;
  }
  .program-offers {
    padding: 0 0.75rem;
  }
  .testimonial-quote-mark {
    font-size: 2.5rem;
    margin-bottom: -0.25rem;
  }
  .page-content .fade-in[style*="box-shadow"] {
    padding: 0.75rem !important;
    border-radius: 12px !important;
  }
}
.error-page { text-align: center; padding: 4rem 1.5rem; }
.error-page p { font-size: 1.2rem; margin-bottom: 2rem; }
.btn-outline-dark {
  color: #fff;
  background: #0a1628;
  border-color: #0a1628;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.2);
}
.btn-outline-dark:hover {
  background: #c41e3a;
  border-color: #c41e3a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
  transform: translateY(-1px);
}
.btn-outline-dark:focus-visible {
  background: #c41e3a;
  border-color: #c41e3a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
  transform: translateY(-1px);
}
.btn-outline-dark:active {
  background: #c41e3a;
  border-color: #c41e3a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
  transform: translateY(-1px);
}
.process-steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s;
}
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.process-step:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.process-step:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.process-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #c41e3a;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-content h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.process-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 0;
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.process-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.process-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4a843;
  font-weight: 700;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.faq-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #d4a843;
  transition: transform 0.3s;
}
.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
}
.faq-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
}
.faq-card:active {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
}
.faq-card h3 {
  font-size: 1.1rem;
  color: #0a1628;
  margin-bottom: 0.75rem;
}
.faq-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.checklist li:last-child {
  border-bottom: none;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4a843;
  font-weight: 700;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .process-step { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .process-number { width: 40px; height: 40px; font-size: 1.1rem; }
  .faq-card { padding: 1.5rem; }
}
.faq-section {
  margin-bottom: 2rem;
}
.faq-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0a1628;
  margin: 2rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #c41e3a;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0a1628;
  line-height: 1.4;
  gap: 1rem;
  font-family: inherit;
}
.faq-question:hover {
  color: #c41e3a;
}
.faq-question:focus-visible {
  color: #c41e3a;
}
.faq-question:active {
  color: #c41e3a;
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #c41e3a;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0.5rem;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 0.5rem 1.25rem;
}
.faq-answer p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin: 0;
}
.faq-answer a {
  color: #c41e3a;
  text-decoration: underline;
  text-decoration-color: rgba(196, 30, 58, 0.3);
  text-underline-offset: 2px;
}
.faq-answer a:hover {
  text-decoration-color: #c41e3a;
}
.faq-answer a:focus-visible {
  text-decoration-color: #c41e3a;
}
.faq-answer a:active {
  text-decoration-color: #c41e3a;
}
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 1.3rem;
  }
  .faq-question {
    font-size: 0.98rem;
    padding: 1rem 0.25rem;
  }
  .faq-answer p {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .faq-section h2 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
  }
  .faq-question {
    font-size: 0.95rem;
    padding: 0.875rem 0.25rem;
    gap: 0.75rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 0.25rem 1rem;
  }
  .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}
.grind-session-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(196, 30, 58, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  animation: grindBadgePulse 3s ease-in-out infinite;
}
.grind-session-badge:hover {
  background: rgba(196, 30, 58, 1);
  transform: scale(1.03);
  text-decoration: none;
}
.grind-session-badge:focus-visible {
  background: rgba(196, 30, 58, 1);
  transform: scale(1.03);
  text-decoration: none;
}
.grind-session-badge:active {
  background: rgba(196, 30, 58, 1);
  transform: scale(1.03);
  text-decoration: none;
}
.gsb-pulse {
  width: 8px;
  height: 8px;
  background: #d4a843;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.gsb-label {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
.gsb-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,168,67,0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(212,168,67,0); }
}
@keyframes grindBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,30,58,0); }
  50% { box-shadow: 0 0 20px 4px rgba(196,30,58,0.3); }
}
.grind-section {
  position: relative;
  background: #0a1628;
  overflow: hidden;
  padding: 5rem 0;
}
.grind-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(196,30,58,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(212,168,67,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.grind-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.grind-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4a843;
  margin-bottom: 0.75rem;
}
.grind-title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.grind-rule {
  width: 60px;
  height: 4px;
  background: #c41e3a;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.grind-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.grind-lead strong {
  color: #d4a843;
}
.grind-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.grind-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.grind-hl-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.grind-highlight strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.15rem;
}
.grind-highlight span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}
.grind-visual {
  position: relative;
}
.grind-image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.08);
}
.grind-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
  animation: kenburns 25s ease-in-out infinite alternate;
}
.grind-stat-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  background: #c41e3a;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(196,30,58,0.4);
}
.grind-stat-badge .gsb-big {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
}
.grind-stat-badge .gsb-small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}
@media (max-width: 1024px) {
  .grind-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .grind-title { font-size: 2.2rem; }
  .grind-visual { max-width: 500px; }
}
@media (max-width: 768px) {
  .grind-section { padding: 3rem 0; }
  .grind-title { font-size: 1.8rem; }
  .grind-image-frame img { aspect-ratio: 4 / 3; }
  .grind-session-badge { flex-wrap: wrap; justify-content: center; text-align: center; padding: 0.5rem 1rem; gap: 0.4rem; }
  .gsb-text { font-size: 0.7rem; }
}
.commitments-intro {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}
.commitment-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: #f7f8fa;
  border-radius: 12px;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0a1628;
  margin-right: 0.25rem;
}
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.commit-filter {
  padding: 0.4rem 0.9rem;
  border: 1.5px solid #d0d5dd;
  border-radius: 6px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}
.commit-filter:hover {
  border-color: #c41e3a;
  color: #c41e3a;
}
.commit-filter:focus-visible {
  border-color: #c41e3a;
  color: #c41e3a;
}
.commit-filter:active {
  border-color: #c41e3a;
  color: #c41e3a;
}
.commit-filter.active {
  background: #c41e3a;
  border-color: #c41e3a;
  color: #fff;
}
.commit-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #888;
  font-size: 1.05rem;
}
.featured-alumni-carousel {
  margin: 2rem 0 2.5rem;
}
.featured-alumni-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.featured-alumni-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: #d4a843 transparent;
}
.featured-alumni-track::-webkit-scrollbar {
  height: 4px;
}
.featured-alumni-track::-webkit-scrollbar-thumb {
  background: #d4a843;
  border-radius: 2px;
}
.featured-alumni-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}
.featured-alumni-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.featured-alumni-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.featured-alumni-card:active {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.featured-alumni-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.featured-alumni-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s;
}
.featured-alumni-card:hover .featured-alumni-images img {
  transform: scale(1.05);
}
.featured-alumni-card:focus-visible .featured-alumni-images img {
  transform: scale(1.05);
}
.featured-alumni-card:active .featured-alumni-images img {
  transform: scale(1.05);
}
.featured-alumni-img-fcp {
  border-right: 2px solid #c41e3a;
}
.featured-alumni-info {
  padding: 0.85rem 1rem 1rem;
}
.featured-alumni-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 0.2rem;
}
.featured-alumni-team {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c41e3a;
  margin-bottom: 0.35rem;
}
.featured-alumni-desc {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 480px) {
  .featured-alumni-card {
    flex: 0 0 240px;
  }
  .featured-alumni-images {
    aspect-ratio: 16 / 10;
  }
}
.commit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}
.commit-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.25s;
  border-left: 4px solid #c41e3a;
}
.commit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.commit-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.commit-card:active {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.commit-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 0.2rem;
}
.commit-school {
  font-size: 0.95rem;
  font-weight: 600;
  color: #c41e3a;
  margin: 0 0 0.5rem;
}
.commit-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.commit-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}
.commit-badge-d1 { background: #c41e3a; }
.commit-badge-d2 { background: #0a1628; }
.commit-badge-d3 { background: #2d5a3d; }
.commit-badge-naia { background: #1e3a5f; }
.commit-badge-juco { background: #3a6fa0; }
.commit-position,
.commit-year {
  font-size: 0.82rem;
  color: #777;
}
.commit-hometown {
  font-size: 0.82rem;
  color: #999;
  margin: 0;
}
.commit-note {
  font-size: 0.8rem;
  font-weight: 600;
  color: #d4a843;
  margin: 0.3rem 0 0;
}
@media (max-width: 768px) {
  .commitment-filters {
    flex-direction: column;
    gap: 1rem;
  }
  .commit-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .commit-card {
    text-align: center;
  }
  .commit-meta {
    justify-content: center;
  }
}
.alumni-spotlight {
  background: #0a1628;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.alumni-editorial { order: 1; }
.alumni-editorial-cta { order: 2; }
.alumni-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.alumni-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.alumni-card-image {
  position: absolute;
  inset: 0;
}
.alumni-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.alumni-card:nth-child(2) .alumni-card-image img {
  animation-delay: -9s;
  animation-direction: alternate-reverse;
}
.alumni-card:hover .alumni-card-image img {
  animation-play-state: paused;
  transform: scale(1.06);
}
.alumni-card:focus-visible .alumni-card-image img {
  animation-play-state: paused;
  transform: scale(1.06);
}
.alumni-card:active .alumni-card-image img {
  animation-play-state: paused;
  transform: scale(1.06);
}
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1%, -1.5%);
  }
}
.alumni-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(
    to top,
    rgba(10,22,40,0.95) 0%,
    rgba(10,22,40,0.75) 45%,
    rgba(10,22,40,0.2) 80%,
    transparent 100%
  );
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.alumni-card-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.alumni-badge {
  padding: 0.25rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 3px;
}
.alumni-badge-origin {
  background: #c41e3a;
  color: #fff;
}
.alumni-badge-achievement {
  background: #d4a843;
  color: #0a1628;
}
.alumni-card-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}
.alumni-card-excerpt {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}
.alumni-card-link {
  color: #d4a843;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  margin-top: 0.35rem;
}
.alumni-card:hover .alumni-card-link {
  color: #f0c860;
}
.alumni-card:focus-visible .alumni-card-link {
  color: #f0c860;
}
.alumni-card:active .alumni-card-link {
  color: #f0c860;
  letter-spacing: 2.5px;
}
.alumni-editorial-cta {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: #0a1628;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.spotlight-tag-line {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(212,168,67,0.12);
  color: #d4a843;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}
.alumni-editorial-cta h2 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
  line-height: 1.3;
}
.spotlight-accent {
  color: #d4a843;
}
@media (max-width: 768px) {
  .alumni-editorial {
    grid-template-columns: 1fr;
  }
  .alumni-card {
    min-height: 420px;
  }
  .alumni-card-overlay {
    padding: 2.5rem 1.5rem 1.75rem;
  }
  .alumni-card-title {
    font-size: 1.25rem;
  }
  .alumni-editorial-cta h2 {
    font-size: 1.5rem;
  }
  .alumni-editorial-cta {
    padding: 1rem 1.25rem;
  }
}
@media (max-width: 480px) {
  .alumni-card {
    min-height: 380px;
  }
  .alumni-card-overlay {
    padding: 2rem 1.25rem 1.5rem;
  }
  .alumni-card-title {
    font-size: 1.1rem;
  }
  .alumni-card-excerpt {
    font-size: 0.85rem;
  }
  .alumni-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.55rem;
  }
  .alumni-editorial-cta h2 {
    font-size: 1.3rem;
  }
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.post-meta time {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}
.post-meta-sep {
  color: #ccc;
  font-size: 0.85rem;
}
.post-read-time {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}
.blog-video-wrapper {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  background: #0a1628;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.blog-video-wrapper video {
  display: block;
  width: 100%;
  max-height: 480px;
  background: #000;
}
.blog-video-caption {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #ffffff;
  background: #0a1628;
  margin: 0;
  line-height: 1.6;
  font-style: normal;
}
.post-share {
  border-top: 1px solid #eee;
  padding: 1.5rem 0;
}
.post-share-top {
  border-top: none;
  border-bottom: 1px solid #eee;
}
.post-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.post-share-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.post-share-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.post-share-btn:hover {
  border-color: #c41e3a;
  color: #c41e3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196,30,58,0.15);
}
.post-share-btn:focus-visible {
  border-color: #c41e3a;
  color: #c41e3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196,30,58,0.15);
}
.post-share-btn:active {
  border-color: #c41e3a;
  color: #c41e3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196,30,58,0.15);
}
.post-share-twitter:hover {
  border-color: #000;
  color: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.post-share-twitter:focus-visible {
  border-color: #000;
  color: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.post-share-twitter:active {
  border-color: #000;
  color: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.post-share-facebook:hover {
  border-color: #1877F2;
  color: #1877F2;
  box-shadow: 0 4px 12px rgba(24,119,242,0.15);
}
.post-share-facebook:focus-visible {
  border-color: #1877F2;
  color: #1877F2;
  box-shadow: 0 4px 12px rgba(24,119,242,0.15);
}
.post-share-facebook:active {
  border-color: #1877F2;
  color: #1877F2;
  box-shadow: 0 4px 12px rgba(24,119,242,0.15);
}
.post-share-linkedin:hover,
.post-share-linkedin:focus-visible,
.post-share-linkedin:active {
  border-color: #0A66C2;
  color: #0A66C2;
  box-shadow: 0 4px 12px rgba(10,102,194,0.15);
}
.post-share-email:hover,
.post-share-email:focus-visible,
.post-share-email:active {
  border-color: #333;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.post-share-print:hover,
.post-share-print:focus-visible,
.post-share-print:active {
  border-color: #555;
  color: #555;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.post-share-copy {
  position: relative;
}
.post-share-copy .copy-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: #0a1628;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.post-share-copy.copied .copy-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.post-author {
  padding: 0 0 2.5rem;
}
.post-author-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #f7f8fa;
  border-radius: 12px;
  border-left: 4px solid #c41e3a;
}
.post-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  flex-shrink: 0;
}
.post-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.post-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a1628;
}
.post-author-bio {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .post-share-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .post-share-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .post-author-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
  }
}
@media print {
  .site-nav, .site-footer, .post-share, .post-author, .related-posts, .post-sidebar { display: none !important; }
  .post-body, .alumni-article-body { padding: 0; }
  .post-layout-grid { grid-template-columns: 1fr !important; }
}
.cp-hero {
  position: relative;
  background: #0a1628;
  padding: 7rem 0 4rem;
  text-align: center;
  overflow: hidden;
}
.cp-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,30,58,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cp-hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a843;
  border: 1px solid rgba(212,168,67,0.4);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.cp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.cp-hero-sub {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin: 0 0 2.5rem;
  letter-spacing: 0.01em;
}
.cp-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cp-stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.cp-stat-plus {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #d4a843;
  line-height: 1;
}
.cp-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin-top: 0.35rem;
}
.cp-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
.cp-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.cp-section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4a843;
  border: 1px solid rgba(212,168,67,0.35);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.cp-section-tag--dark {
  color: #c41e3a;
  border-color: rgba(196,30,58,0.3);
}
.cp-section-desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.cp-section-desc--dark {
  color: #888;
}
.cp-featured {
  background: #0d1b30;
  padding: 4rem 0 4.5rem;
}
.cp-featured-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
.cp-featured-row:last-child { margin-bottom: 0; }
.cp-featured-row--top {
  grid-template-columns: repeat(3, 1fr);
}
.cp-featured-row--bottom {
  grid-template-columns: repeat(4, 1fr);
}
.cp-feat-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  min-height: 320px;
}
.cp-featured-row--bottom .cp-feat-card {
  min-height: 260px;
}
.cp-feat-img {
  position: absolute;
  inset: 0;
}
.cp-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}
.cp-feat-card:hover .cp-feat-img img {
  transform: scale(1.05);
}
.cp-feat-card:focus-visible .cp-feat-img img {
  transform: scale(1.05);
}
.cp-feat-card:active .cp-feat-img img {
  transform: scale(1.05);
}
.cp-feat-card[data-player="kylin-green"] .cp-feat-img img {
  object-position: center 45%;
}
.cp-feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0) 30%, rgba(10,22,40,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}
.cp-feat-top {
  display: flex;
  justify-content: flex-end;
}
.cp-feat-badge {
  background: rgba(196,30,58,0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}
.cp-featured-row--bottom .cp-feat-overlay {
  justify-content: flex-end;
}
.cp-feat-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cp-feat-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.cp-featured-row--top .cp-feat-name {
  font-size: 1.35rem;
}
.cp-feat-team {
  font-size: 0.78rem;
  font-weight: 600;
  color: #d4a843;
}
.cp-feat-arrow {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
}
.cp-feat-card:hover .cp-feat-arrow {
  color: #d4a843;
}
.cp-feat-card:focus-visible .cp-feat-arrow {
  color: #d4a843;
}
.cp-feat-card:active .cp-feat-arrow {
  color: #d4a843;
}
.cp-feat-img video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.cp-feat-video-icon {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,30,58,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  color: #fff;
  font-size: 0.65rem;
  z-index: 3;
  pointer-events: none;
}
.cp-board {
  background: #f5f6f8;
  padding: 4rem 0 4.5rem;
}
.cp-filters {
  background: #fff;
  border: 1px solid #e4e6ea;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cp-filter-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cp-filter-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a1628;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 42px;
}
.cp-filter-pills {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.cp-pill {
  background: #f5f6f8;
  border: 1.5px solid #dde0e4;
  color: #555;
  padding: 0.38rem 0.85rem;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.cp-pill:hover {
  border-color: #0a1628;
  color: #0a1628;
  background: #eef0f3;
}
.cp-pill:focus-visible {
  border-color: #0a1628;
  color: #0a1628;
  background: #eef0f3;
}
.cp-pill:active {
  border-color: #0a1628;
  color: #0a1628;
  background: #eef0f3;
}
.cp-pill.active {
  background: #0a1628;
  border-color: #0a1628;
  color: #fff;
}
.cp-pill--d1.active { background: #c41e3a; border-color: #c41e3a; }
.cp-pill--d2.active { background: #0a1628; border-color: #0a1628; }
.cp-pill--d3.active { background: #2a5f8f; border-color: #2a5f8f; }
.cp-pill--naia.active { background: #1a3a5c; border-color: #1a3a5c; }
.cp-pill--juco.active { background: #4a7ab5; border-color: #4a7ab5; }
.cp-filter-count {
  font-size: 0.75rem;
  color: #999;
  text-align: right;
}
.cp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cp-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid #eef0f3;
}
.cp-row:first-child {
  border-radius: 12px 12px 0 0;
}
.cp-row:last-child {
  border-radius: 0 0 12px 12px;
  border-bottom: none;
}
.cp-row:only-child {
  border-radius: 12px;
}
.cp-row:hover {
  background: #fafbfc;
}
.cp-row-badge {
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.cp-level {
  display: inline-block;
  padding: 0.25rem 0;
  width: 42px;
  text-align: center;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cp-level--d1 { background: #c41e3a; color: #fff; }
.cp-level--d2 { background: #0a1628; color: #d4a843; }
.cp-level--d3 { background: #2a5f8f; color: #fff; }
.cp-level--naia { background: #1a3a5c; color: #fff; }
.cp-level--juco { background: #4a7ab5; color: #fff; }
.cp-row-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.cp-row-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0a1628;
  line-height: 1.25;
}
.cp-row-school {
  font-size: 0.82rem;
  font-weight: 600;
  color: #c41e3a;
}
.cp-row-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cp-row-pos {
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
}
.cp-row-year {
  font-size: 0.78rem;
  color: #888;
  font-weight: 600;
}
.cp-row-town {
  font-size: 0.75rem;
  color: #aaa;
}
.cp-row-note {
  font-size: 0.68rem;
  font-weight: 700;
  color: #d4a843;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.cp-no-results {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
  border-radius: 12px;
  color: #888;
}
@media (max-width: 1024px) {
  .cp-featured-row--top {
    grid-template-columns: repeat(3, 1fr);
  }
  .cp-featured-row--bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .cp-feat-card { min-height: 240px; }
  .cp-featured-row--top .cp-feat-card { min-height: 280px; }
}
@media (max-width: 768px) {
  .cp-hero { padding: 6rem 0 3rem; }
  .cp-stats { gap: 1.25rem; }
  .cp-stat-divider { height: 28px; }
  .cp-featured-row--top {
    grid-template-columns: 1fr;
  }
  .cp-featured-row--bottom {
    grid-template-columns: 1fr 1fr;
  }
  .cp-feat-card { min-height: 240px; }
  .cp-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .cp-row-details {
    width: 100%;
    padding-left: 58px;
  }
}
@media (max-width: 480px) {
  .cp-hero { padding: 5.5rem 0 2.5rem; }
  .cp-stats { gap: 1rem; }
  .cp-stat-num { font-size: 1.8rem; }
  .cp-stat-divider { display: none; }
  .cp-stat-label { font-size: 0.65rem; }
  .cp-featured, .cp-board { padding: 3rem 0; }
  .cp-featured-row--top .cp-feat-card { min-height: 220px; }
  .cp-featured-row--bottom { grid-template-columns: 1fr; }
  .cp-featured-row--bottom .cp-feat-card { min-height: 200px; }
  .cp-feat-name { font-size: 1.1rem; }
  .cp-pill { padding: 0.32rem 0.65rem; font-size: 0.7rem; }
  .cp-row { padding: 0.75rem 1rem; }
  .cp-row-details { padding-left: 0; }
}
@media (max-width: 768px) {
  .cp-filters {
    padding: 1rem 1.25rem;
  }
  .cp-pill {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  .cp-row-note {
    width: 100%;
    padding-left: 58px;
  }
}
@media (max-width: 480px) {
  .cp-filters {
    padding: 0.75rem 1rem;
    gap: 0.6rem;
    border-radius: 10px;
  }
  .cp-filter-row {
    gap: 0.4rem;
  }
  .cp-pill {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .cp-row-details {
    padding-left: 58px;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .cp-row-town {
    display: none;
  }
  .cp-row-note {
    width: 100%;
    padding-left: 58px;
  }
  .cp-feat-overlay {
    padding: 0.75rem;
  }
  .cp-feat-team {
    font-size: 0.72rem;
  }
  .cp-hero-sub {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .cp-hero {
    padding: 4.5rem 0 2rem;
  }
  .cp-stat-num {
    font-size: 1.5rem;
  }
  .cp-stat-label {
    font-size: 0.6rem;
  }
  .cp-feat-name {
    font-size: 1rem;
  }
  .cp-featured-row--top .cp-feat-card {
    min-height: 200px;
  }
  .cp-featured-row--bottom .cp-feat-card {
    min-height: 180px;
  }
  .cp-row {
    padding: 0.65rem 0.75rem;
  }
  .cp-row-badge {
    width: 40px;
  }
  .cp-level {
    width: 36px;
    font-size: 0.65rem;
  }
  .cp-row-name {
    font-size: 0.85rem;
  }
  .cp-row-school {
    font-size: 0.78rem;
  }
  .cp-row-details {
    padding-left: 50px;
  }
  .cp-row-note {
    padding-left: 50px;
  }
}
@media (pointer: coarse) {
  .cp-pill {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .cp-row {
    min-height: 56px;
  }
}
.schedule-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.05rem;
  color: #444;
}
.schedule-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.schedule-month-header {
  background: #0a1628;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  margin-top: 2rem;
  border-radius: 8px 8px 0 0;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.5rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.schedule-table thead {
  background: #f0f2f5;
}
.schedule-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
  font-weight: 600;
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
}
.schedule-table td {
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.schedule-table tbody tr:last-child td {
  border-bottom: none;
}
.schedule-table tbody tr:hover {
  background: #f8f9fb;
}
.schedule-table td:first-child {
  font-weight: 600;
  white-space: nowrap;
  color: #0a1628;
  min-width: 110px;
}
.schedule-table td:nth-child(2) {
  font-weight: 500;
}
.schedule-site {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.schedule-site.home {
  background: rgba(196, 30, 58, 0.1);
  color: #c41e3a;
}
.schedule-site.away {
  background: rgba(10, 22, 40, 0.08);
  color: #555;
}
.schedule-note {
  display: inline-block;
  background: rgba(212, 168, 67, 0.15);
  color: #8a6d1b;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.schedule-break td {
  background: #f8f4ec;
  font-style: italic;
  color: #888;
}
.schedule-disclaimer {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem 1.25rem;
  background: #f8f9fb;
  border-left: 4px solid #d4a843;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: #666;
}
@media (max-width: 768px) {
  .schedule-table th:nth-child(4),
  .schedule-table td:nth-child(4) {
    display: none;
  }
  .schedule-table td {
    padding: 0.55rem 0.6rem;
    font-size: 0.84rem;
  }
  .schedule-table th {
    padding: 0.5rem 0.6rem;
    font-size: 0.7rem;
  }
  .schedule-table td:first-child {
    min-width: 80px;
  }
  .schedule-month-header {
    font-size: 0.95rem;
    padding: 0.55rem 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-img,
  .about-image img,
  .editorial-feature-image img,
  .facility-home-card img,
  .program-card-image img,
  .gallery-main img,
  .facility-main img,
  .grind-image-frame img,
  .alumni-card-image img,
  .featured-alumni-images img {
    animation: none !important;
  }
}
.feature-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0a1628 0%, #162544 100%);
  border-radius: 50%;
  margin: 0 auto 1.1rem;
  color: #d4a843;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.2);
}
.feature-icon-svg svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.feature-card .feature-icon-svg {
  margin-bottom: 1.1rem;
}
.feature-icon-svg.icon-red {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: #fff;
}
.feature-icon-svg.icon-gold {
  background: linear-gradient(135deg, #d4a843 0%, #b8912e 100%);
  color: #0a1628;
}
.coach-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.coach-card-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}
.coach-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.coach-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.coach-card:active {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.coach-card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e8e8e8;
}
.coach-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.coach-card:hover .coach-card-photo img {
  transform: scale(1.05);
}
.coach-card:focus-visible .coach-card-photo img {
  transform: scale(1.05);
}
.coach-card:active .coach-card-photo img {
  transform: scale(1.05);
}
.coach-card-info {
  padding: 1.25rem 1rem 1.5rem;
}
.coach-card-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 0.3rem;
}
.coach-card-info .coach-card-title {
  font-size: 0.88rem;
  color: #c41e3a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.coach-card-info .coach-card-bio {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
}
.coach-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4a843 0%, #c49a35 100%);
  color: #0a1628;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}
@media (max-width: 1024px) {
  .coach-card-grid,
  .coach-card-grid.four-col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .coach-card-grid,
  .coach-card-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 480px) {
  .coach-card-grid,
  .coach-card-grid.four-col {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}
.enrollment-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
  counter-reset: step-counter;
}
.enrollment-step {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  counter-increment: step-counter;
  transition: transform 0.3s ease;
}
.enrollment-step:hover {
  transform: translateY(-4px);
}
.enrollment-step:focus-visible {
  transform: translateY(-4px);
}
.enrollment-step:active {
  transform: translateY(-4px);
}
.enrollment-step::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}
.enrollment-step h3 {
  font-size: 1rem;
  color: #0a1628;
  margin-bottom: 0.5rem;
}
.enrollment-step p {
  font-size: 0.94rem;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .enrollment-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  .enrollment-step {
    padding: 1.25rem 0.75rem;
    min-width: 0;
  }
}
.ccu-contact {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  margin: 2rem auto 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 4px solid #d4a843;
}
.ccu-contact h3 {
  color: #0a1628;
  margin-bottom: 0.3rem;
}
.ccu-contact .ccu-role {
  color: #c41e3a;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}
.ccu-contact a {
  color: #c41e3a;
  font-weight: 600;
}
.daily-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 2rem auto 0;
}
.schedule-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border-left: 3px solid #d4a843;
}
.schedule-time {
  font-size: 0.82rem;
  font-weight: 700;
  color: #d4a843;
  white-space: nowrap;
  min-width: 80px;
}
.schedule-activity {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.9);
}
.daily-schedule-light .schedule-block {
  background: #f8f9fb;
}
.daily-schedule-light .schedule-activity {
  color: #333;
}
.alumni-callout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto 0;
}
.alumni-callout-card {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(212, 168, 67, 0.2);
  transition: transform 0.3s ease;
}
.alumni-callout-card:hover {
  transform: translateY(-4px);
}
.alumni-callout-card:focus-visible {
  transform: translateY(-4px);
}
.alumni-callout-card:active {
  transform: translateY(-4px);
}
.alumni-callout-card h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.alumni-callout-card .alumni-school {
  color: #d4a843;
  font-weight: 600;
  font-size: 0.9rem;
}
.alumni-callout-card .alumni-detail {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  margin-top: 0.3rem;
}
.trust-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.04), rgba(212, 168, 67, 0.06));
  border-left: 4px solid #d4a843;
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.trust-bar-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #0a1628;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a843;
}
.trust-bar-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.trust-bar-content h4 {
  color: #0a1628;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.trust-bar-content p {
  color: #555;
  font-size: 0.9rem;
  margin: 0;
}
.program-offers .feature-card,
.staff-section:not(.staff-section-dark) .feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  border-top: 3px solid #c41e3a;
}
.program-offers .feature-card:hover,
.staff-section:not(.staff-section-dark) .feature-card:hover {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
  border-top-color: #d4a843;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.program-offers .feature-card:focus-visible,
.staff-section:not(.staff-section-dark) .feature-card:focus-visible {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
  border-top-color: #d4a843;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.program-offers .feature-card:active,
.staff-section:not(.staff-section-dark) .feature-card:active {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
  border-top-color: #d4a843;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.program-offers .feature-card h3,
.staff-section:not(.staff-section-dark) .feature-card h3 {
  color: #0a1628;
}
.program-offers .feature-card p,
.staff-section:not(.staff-section-dark) .feature-card p {
  color: #555;
}
.coach-card-photo {
  position: relative;
}
.coach-card-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10,22,40,0.35), transparent);
  pointer-events: none;
}
.admissions-feature {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(212,168,67,0.15);
}
.admissions-feature-photo {
  flex-shrink: 0;
  width: 200px;
  height: 220px;
  overflow: hidden;
}
.admissions-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.admissions-feature-info {
  padding: 1.5rem 2rem 1.5rem 0;
}
.admissions-feature-info h3 {
  font-size: 1.2rem;
  color: #0a1628;
  margin-bottom: 0.25rem;
}
.admissions-feature-info .admissions-role {
  color: #c41e3a;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.admissions-feature-info p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .admissions-feature {
    flex-direction: column;
    max-width: 340px;
  }
  .admissions-feature-photo {
    width: 100%;
    height: 200px;
  }
  .admissions-feature-info {
    padding: 1.25rem;
    text-align: center;
  }
}
.feature-icon-svg {
  width: 60px;
  height: 60px;
}
.feature-icon-svg svg {
  width: 28px;
  height: 28px;
}
.coach-card-info {
  padding: 1.4rem 1.15rem 1.6rem;
}
.coach-card-info h3 {
  font-size: 1.1rem;
}
.coach-card-badge {
  font-size: 0.72rem;
  padding: 0.3rem 0.85rem;
}
@media (max-width: 768px) {
  .page-content .fade-in[style*="border-left: 4px solid"] {
    padding: 1.5rem 1.25rem !important;
    border-radius: 0 8px 8px 0 !important;
  }
  .page-content p[style*="text-align: justify"],
  .program-details p[style*="text-align: justify"] {
    text-align: left !important;
  }
  .page-content h2[style*="font-size: 2rem"] {
    font-size: 1.5rem !important;
  }
  .page-content p[style*="font-size: 1.1rem"],
  .page-content p[style*="font-size: 1.08rem"] {
    font-size: 1rem !important;
  }
  .program-offers .feature-card p {
    text-align: left !important;
  }
  .page-content .fade-in > div[style*="display: flex"][style*="gap: 3rem"] {
    gap: 1.5rem !important;
    padding: 1.25rem 1rem !important;
  }
  .page-content .fade-in > div[style*="display: flex"] > img[style*="height: 75px"],
  .page-content .fade-in > div[style*="display: flex"] > img[style*="height: 80px"] {
    height: 50px !important;
  }
  .path-logos {
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
  .path-logos img {
    height: 50px;
    max-width: 140px;
  }
}
@media (max-width: 480px) {
  .page-content .fade-in[style*="border-left: 4px solid"] {
    padding: 1.25rem 1rem !important;
  }
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .program-image img {
    min-height: 200px;
  }
  .feature-card {
    padding: 1.75rem 1rem;
  }
  .staff-section-dark .program-grid {
    gap: 1.5rem !important;
  }
  .page-content .fade-in > div[style*="display: flex"][style*="gap: 3rem"] {
    gap: 1rem !important;
    padding: 1rem 0.75rem !important;
    justify-content: center !important;
  }
  .path-card {
    padding: 1.5rem 1rem !important;
  }
  .path-logos {
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
  .path-logos img {
    height: 40px;
    max-width: 110px;
  }
  .two-paths-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}
.page-content .staff-section-dark {
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}
.page-content .impact-bar {
  border-radius: 16px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  overflow: hidden;
}
.alumni-callout-card {
  border: 1px solid rgba(212, 168, 67, 0.35) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease !important;
}
.alumni-callout-card:hover {
  border-color: rgba(212, 168, 67, 0.6) !important;
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.15), 0 4px 16px rgba(0, 0, 0, 0.25);
}
.alumni-callout-card:focus-visible {
  border-color: rgba(212, 168, 67, 0.6) !important;
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.15), 0 4px 16px rgba(0, 0, 0, 0.25);
}
.alumni-callout-card:active {
  border-color: rgba(212, 168, 67, 0.6) !important;
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.15), 0 4px 16px rgba(0, 0, 0, 0.25);
}
.program-offers .feature-card p {
  text-align: left !important;
}
.staff-section-dark .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 0.65rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.05);
}
.staff-section-dark .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}
.staff-section-dark .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}
.staff-section-dark .btn-outline:active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}
.page-content .staff-section-dark + section,
.page-content .staff-section-dark + .program-grid,
.page-content .impact-bar + section {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .page-content .staff-section-dark {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
  .page-content .impact-bar {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    border-radius: 14px;
  }
}
@media (max-width: 480px) {
  .page-content .staff-section-dark {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
  .page-content .impact-bar {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 12px;
  }
  .alumni-callout-grid {
    gap: 1rem;
  }
}
.connect-form-section {
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.connect-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4a843, #c49a38, #d4a843);
}
.connect-form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.connect-form-header .section-label {
  color: #d4a843;
}
.connect-form-header h2 {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0.5rem 0;
  letter-spacing: -0.01em;
}
.connect-form-header .gold-rule {
  margin: 0.75rem auto 1.25rem;
}
.connect-form-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.connect-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  min-height: 750px;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.connect-form-wrapper iframe {
  display: block;
  min-height: 750px;
}
@media (max-width: 768px) {
  .connect-form-section {
    padding: 3rem 0 1.5rem;
  }
  .connect-form-header h2 {
    font-size: 1.75rem;
  }
  .connect-form-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .connect-form-wrapper {
    margin: 0 0.5rem;
  }
}
@media (max-width: 480px) {
  .connect-form-section {
    padding: 2.5rem 0 1rem;
  }
  .connect-form-header h2 {
    font-size: 1.5rem;
  }
  .connect-form-wrapper {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .facility-gallery {
    gap: 0.75rem;
    padding: 0 1rem;
  }
  .trust-bar {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .program-offers .feature-grid {
    max-width: 100% !important;
  }
  .staff-section-dark > div[style*="max-width: 800px"] p {
    font-size: 1rem !important;
  }
}
@media (max-width: 480px) {
  .facility-gallery {
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  .facility-side {
    aspect-ratio: 16 / 8;
  }
  .trust-bar {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 1.25rem 1rem;
  }
  .trust-bar h4 {
    font-size: 1rem;
  }
  .trust-bar p {
    font-size: 0.9rem;
  }
  .cta-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cta-section h2 {
    font-size: 1.5rem;
  }
  .cta-section p {
    font-size: 0.95rem;
  }
  .feature-grid {
    grid-template-columns: 1fr !important;
  }
}
@media print {
  .site-header, .site-footer, .nav-toggle, .cta-section, .hero-cta { display: none !important; }
  .page-content { padding-top: 0 !important; }
  .page-header { background: #fff !important; color: #000 !important; padding: 1rem 0 !important; }
}
.espn-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.espn-staff-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 3px solid #c41e3a;
}
.espn-staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(212, 168, 67, 0.12);
}
.espn-staff-card:focus-visible {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(212, 168, 67, 0.12);
}
.espn-staff-card:active {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(212, 168, 67, 0.12);
}
.espn-staff-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.espn-staff-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.espn-staff-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.espn-staff-card:hover .espn-staff-card-img img {
  transform: scale(1.06);
}
.espn-staff-card:focus-visible .espn-staff-card-img img {
  transform: scale(1.06);
}
.espn-staff-card:active .espn-staff-card-img img {
  transform: scale(1.06);
}
.espn-staff-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #c41e3a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  z-index: 3;
}
.espn-staff-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.4rem;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.93) 35%, rgba(10, 22, 40, 0.55) 70%, transparent 100%);
  z-index: 2;
}
.espn-staff-overlay h3 {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.espn-staff-role {
  color: #d4a843;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}
.espn-staff-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid #eee;
  margin-top: auto;
}
.espn-staff-social {
  display: flex;
  gap: 0.5rem;
}
.espn-staff-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  color: #666;
  transition: all 0.2s ease;
}
.espn-staff-social a:hover {
  color: #c41e3a;
  border-color: #c41e3a;
  background: rgba(196, 30, 58, 0.05);
}
.espn-staff-social a:focus-visible {
  color: #c41e3a;
  border-color: #c41e3a;
  background: rgba(196, 30, 58, 0.05);
}
.espn-staff-social a:active {
  color: #c41e3a;
  border-color: #c41e3a;
  background: rgba(196, 30, 58, 0.05);
}
.espn-staff-btn {
  display: inline-block;
  background: #c41e3a;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  transition: transform 0.25s ease;
}
.espn-staff-btn:hover {
  background: #a11830;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}
.espn-staff-btn:focus-visible {
  background: #a11830;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}
.espn-staff-btn:active {
  background: #a11830;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}
.staff-section-dark .espn-staff-card {
  background: #111b2e;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  border-top-color: #d4a843;
}
.staff-section-dark .espn-staff-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 168, 67, 0.2);
}
.staff-section-dark .espn-staff-card:focus-visible {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 168, 67, 0.2);
}
.staff-section-dark .espn-staff-card:active {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 168, 67, 0.2);
}
.staff-section-dark .espn-staff-card-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}
.staff-section-dark .espn-staff-social a {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}
.staff-section-dark .espn-staff-social a:hover {
  color: #d4a843;
  border-color: #d4a843;
  background: rgba(212, 168, 67, 0.08);
}
.staff-section-dark .espn-staff-social a:focus-visible {
  color: #d4a843;
  border-color: #d4a843;
  background: rgba(212, 168, 67, 0.08);
}
.staff-section-dark .espn-staff-social a:active {
  color: #d4a843;
  border-color: #d4a843;
  background: rgba(212, 168, 67, 0.08);
}
@media (max-width: 768px) {
  .espn-staff-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 1rem;
  }
  .espn-staff-overlay h3 {
    font-size: 1.15rem;
  }
  .espn-staff-role {
    font-size: 0.82rem;
  }
  .espn-staff-overlay {
    padding: 2.5rem 1.25rem 1.15rem;
  }
  .espn-staff-card-img {
    aspect-ratio: 3 / 4;
  }
  .espn-staff-card-footer {
    padding: 0.85rem 1.15rem;
  }
}
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.advisory-grid .espn-staff-card-img {
  aspect-ratio: 4 / 5;
}
.advisory-grid .espn-staff-card-img img {
  object-position: center 15%;
}
.advisory-grid .espn-staff-overlay h3 {
  font-size: 1.05rem;
}
.advisory-grid .espn-staff-overlay p {
  font-size: 0.78rem;
}
.advisory-grid .espn-staff-card-footer {
  padding: 0.75rem 1rem;
}
.advisory-grid .espn-staff-btn {
  font-size: 0.75rem;
  padding: 0.4rem 0.95rem;
}
.advisory-grid .espn-staff-social a {
  width: 28px;
  height: 28px;
}
.advisory-grid .espn-staff-social a svg {
  width: 13px;
  height: 13px;
}
@media (max-width: 1024px) {
  .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .advisory-grid .espn-staff-overlay h3 {
    font-size: 1.15rem;
  }
}
@media (max-width: 768px) {
  .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }
  .advisory-grid .espn-staff-overlay h3 {
    font-size: 0.95rem;
  }
  .advisory-grid .espn-staff-card-img {
    aspect-ratio: 3 / 4;
  }
}
.advisory-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}
.advisory-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
}
.advisory-circle-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advisory-circle-photo {
  width: 160px;
  margin-bottom: 1.1rem;
}
.advisory-circle-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s;
}
.advisory-circle-link:hover .advisory-circle-photo img {
  opacity: 0.85;
}
.advisory-circle-link:focus-visible .advisory-circle-photo img {
  opacity: 0.85;
}
.advisory-circle-link:active .advisory-circle-photo img {
  opacity: 0.85;
}
.advisory-circle-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.3rem;
  line-height: 1.25;
}
.advisory-circle-role {
  font-size: 0.78rem;
  color: #b22234;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.advisory-circle-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  background: #b22234;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}
.advisory-circle-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(26, 26, 46, 0.45);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.advisory-circle-more:hover {
  color: #b22234;
}
.advisory-circle-more:focus-visible {
  color: #b22234;
}
.advisory-circle-more:active {
  color: #b22234;
}
@media (max-width: 768px) {
  .advisory-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
    padding: 0 1rem 3rem;
  }
  .advisory-circle-item {
    width: auto;
  }
  .advisory-circle-photo {
    width: 110px;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    overflow: hidden;
  }
  .advisory-circle-photo img {
    width: 100%;
    height: auto;
    display: block;
  }
  .advisory-circle-info h3 {
    font-size: 0.9rem;
  }
  .advisory-circle-role {
    font-size: 0.7rem;
  }
}
@media (max-width: 480px) {
  .advisory-strip {
    gap: 1.5rem 0.75rem;
    padding: 0 0.75rem 2rem;
  }
  .advisory-circle-photo {
    width: 100px;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
  }
  .advisory-circle-info h3 {
    font-size: 0.85rem;
  }
  .advisory-circle-role {
    font-size: 0.65rem;
  }
}
.director-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.director-card {
  background: #0a1628;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.director-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.director-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.director-card:active {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.director-card-link {
  text-decoration: none;
  color: #fff;
  display: block;
}
.director-card-link:visited {
  color: #fff;
}
.director-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.director-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}
.director-card:hover .director-card-img img {
  transform: scale(1.05);
}
.director-card:focus-visible .director-card-img img {
  transform: scale(1.05);
}
.director-card:active .director-card-img img {
  transform: scale(1.05);
}
.director-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #c41e3a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  z-index: 3;
}
.director-card-info {
  padding: 1.25rem 1.25rem 0.75rem;
  background: #0a1628;
  border-top: 3px solid #c41e3a;
  color: #fff;
}
.director-card-info h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.3rem;
  line-height: 1.25;
}
.director-card-info .director-card-role {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.01em;
}
.director-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}
.director-card-footer .espn-staff-social a {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}
.director-card-footer .espn-staff-social a:hover {
  color: #d4a843;
  border-color: #d4a843;
  background: rgba(212, 168, 67, 0.08);
}
.director-card-footer .espn-staff-social a:focus-visible {
  color: #d4a843;
  border-color: #d4a843;
  background: rgba(212, 168, 67, 0.08);
}
.director-card-footer .espn-staff-social a:active {
  color: #d4a843;
  border-color: #d4a843;
  background: rgba(212, 168, 67, 0.08);
}
@media (max-width: 1024px) {
  .director-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .director-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 1rem;
  }
  .director-card-img {
    aspect-ratio: 3 / 4;
  }
  .director-card-info h3 {
    font-size: 1.1rem;
  }
}
.coach-profile-page {
  background: #fff;
}
.coach-profile-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  max-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #000;
}
.coach-profile-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.coach-profile-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.4) 50%, rgba(10, 22, 40, 0.2) 100%);
}
.coach-profile-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}
.coach-profile-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1rem;
}
.coach-profile-back-link:hover {
  color: #fff;
}
.coach-profile-back-link:focus-visible {
  color: #fff;
}
.coach-profile-back-link:active {
  color: #fff;
}
.coach-profile-hero-badge {
  display: inline-block;
  background: #c41e3a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.coach-profile-hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.4rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.coach-profile-hero-title {
  color: #d4a843;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  margin: 0;
}
.coach-profile-card-wrapper {
  position: relative;
  z-index: 3;
  margin-top: -3.5rem;
  margin-bottom: 2rem;
}
.coach-profile-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  max-width: 650px;
}
.coach-profile-card-img {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f2f3f5;
}
.coach-profile-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.coach-profile-card-info h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0a1628;
  margin: 0 0 0.15rem;
  line-height: 1.2;
}
.coach-profile-card-title {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
}
.coach-profile-social {
  display: flex;
  gap: 0.5rem;
}
.coach-profile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ddd;
  color: #666;
  transition: all 0.2s ease;
}
.coach-profile-social a:hover {
  color: #c41e3a;
  border-color: #c41e3a;
  background: rgba(196, 30, 58, 0.05);
}
.coach-profile-social a:focus-visible {
  color: #c41e3a;
  border-color: #c41e3a;
  background: rgba(196, 30, 58, 0.05);
}
.coach-profile-social a:active {
  color: #c41e3a;
  border-color: #c41e3a;
  background: rgba(196, 30, 58, 0.05);
}
.coach-profile-stats {
  background: #0a1628;
  padding: 1.75rem 0;
}
.coach-profile-stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.coach-profile-stat {
  text-align: center;
}
.coach-profile-stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #d4a843;
  line-height: 1.2;
}
.coach-profile-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}
.coach-profile-bio-section {
  padding: 3rem 0;
}
.coach-profile-bio-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
}
.coach-profile-bio-content p {
  margin-bottom: 1.25rem;
}
.coach-profile-bio-content p:last-child {
  margin-bottom: 0;
}
.coach-profile-details {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}
.coach-profile-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.coach-profile-detail svg {
  flex-shrink: 0;
  color: #c41e3a;
  margin-top: 0.15rem;
}
.coach-profile-detail .detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.coach-profile-detail .detail-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a1628;
  margin-top: 0.1rem;
}
@media (max-width: 768px) {
  .coach-profile-hero {
    height: 40vh;
    min-height: 280px;
  }
  .coach-profile-card {
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
  .coach-profile-card-img {
    width: 80px;
    height: 80px;
  }
  .coach-profile-card-info h2 {
    font-size: 1.15rem;
  }
  .coach-profile-stats-row {
    gap: 2rem;
  }
  .coach-profile-stat-value {
    font-size: 1.5rem;
  }
  .coach-profile-bio-section {
    padding: 2rem 0;
  }
}
@media (max-width: 480px) {
  .coach-profile-hero {
    height: 35vh;
    min-height: 250px;
  }
  .coach-profile-hero-content {
    padding: 0 1rem 2rem;
  }
  .coach-profile-card-wrapper {
    margin-top: -2.5rem;
  }
  .coach-profile-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
    max-width: 100%;
  }
  .coach-profile-card-img {
    width: 90px;
    height: 90px;
  }
  .coach-profile-social {
    justify-content: center;
  }
  .coach-profile-stats-row {
    gap: 1.5rem;
  }
  .coach-profile-stat-value {
    font-size: 1.3rem;
  }
  .coach-profile-details {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.18), 0 2px 8px rgba(0,0,0,0.08);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 360px;
  width: calc(100vw - 48px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
  border-left: 4px solid #c41e3a;
}
.social-proof-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.social-proof-toast-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c41e3a 0%, #9b1830 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
.social-proof-toast-body {
  flex: 1;
  min-width: 0;
}
.social-proof-toast-msg {
  font-size: 0.82rem;
  color: #1a1a2e;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
}
.social-proof-toast-time {
  font-size: 0.72rem;
  color: #888;
  margin-top: 2px;
  display: block;
}
.social-proof-toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #aaa;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  border-radius: 4px;
}
.social-proof-toast-close:hover {
  color: #333;
  background: rgba(0,0,0,0.05);
}
.social-proof-toast-close:focus-visible {
  color: #333;
  background: rgba(0,0,0,0.05);
}
.social-proof-toast-close:active {
  color: #333;
  background: rgba(0,0,0,0.05);
}
@media (max-width: 480px) {
  .social-proof-toast {
    bottom: 16px;
    left: 12px;
    max-width: calc(100vw - 24px);
    width: calc(100vw - 24px);
    padding: 12px 14px;
    gap: 10px;
  }
  .social-proof-toast-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .social-proof-toast-msg { font-size: 0.78rem; }
}
@media print {
  .social-proof-toast { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .social-proof-toast {
    transition: opacity 0.2s ease;
    transform: translateY(0);
  }
}
