@import url("./main.css");

/* ══════════════════════════════════════
   GALLERY PAGE
   ══════════════════════════════════════ */
.gallery-masonry {
  columns: 3;
  column-gap: 0.75rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition:
    transform 0.5s ease,
    filter 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.85);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 46, 26, 0.85), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-label {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .gallery-masonry {
    columns: 2;
  }
}
@media (max-width: 480px) {
  .gallery-masonry {
    columns: 1;
  }
}
.highlight-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 0.75rem;
}
.hs-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.hs-item.wide {
  grid-column: span 2;
}
.hs-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.hs-item:hover img {
  transform: scale(1.04);
}
.hs-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 46, 26, 0.88), transparent);
  padding: 1.5rem 1.25rem 1rem;
}
.hs-caption h4 {
  color: var(--cream);
  font-size: 1rem;
  margin: 0;
}
.hs-caption p {
  color: rgba(250, 247, 242, 0.65);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}
@media (max-width: 768px) {
  .highlight-strip {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .hs-item,
  .hs-item.wide {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }
}

/* ══════════════════════════════════════
   ADMISSIONS PAGE
   ══════════════════════════════════════ */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--terracotta),
    var(--gold),
    var(--forest-light)
  );
}
.process-step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 0 0 2.5rem 0;
  position: relative;
}
.process-step:last-child {
  padding-bottom: 0;
}
.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 3px solid var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--terracotta);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:nth-child(2) .step-number {
  border-color: var(--gold);
  color: var(--gold);
}
.process-step:nth-child(3) .step-number {
  border-color: var(--forest-light);
  color: var(--forest-light);
}
.process-step:hover .step-number {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
  transform: scale(1.1);
}
.process-step:nth-child(2):hover .step-number {
  background: var(--gold);
  border-color: var(--gold);
}
.process-step:nth-child(3):hover .step-number {
  background: var(--forest-light);
  border-color: var(--forest-light);
}
.step-body {
  flex: 1;
  padding-top: 0.5rem;
}
.step-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.step-body p {
  font-size: 0.875rem;
  color: var(--ink-faint);
  line-height: 1.65;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196, 92, 58, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  margin-bottom: 0.4rem;
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
}
.fee-table th {
  text-align: left;
  padding: 0.875rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--cream-dark);
  border-bottom: 2px solid var(--sand-dark);
}
.fee-table td {
  padding: 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--sand);
  color: var(--ink-light);
}
.fee-table tr:last-child td {
  border-bottom: none;
}
.fee-table tr:hover td {
  background: var(--cream);
}
.fee-amount {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--terracotta);
}
.division-eligibility {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.div-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border-left: 4px solid var(--terracotta);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.div-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.div-card:nth-child(2) {
  border-left-color: var(--gold);
}
.div-card:nth-child(3) {
  border-left-color: var(--forest-light);
}
.div-card-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}
.div-card h5 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.div-card p {
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.div-card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.div-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  background: var(--cream-dark);
  color: var(--ink-faint);
}
.accordion-item {
  border-bottom: 1px solid var(--sand);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  transition: color 0.2s;
}
.accordion-trigger:hover {
  color: var(--terracotta);
}
.acc-icon {
  font-size: 1rem;
  transition: transform 0.3s;
  color: var(--terracotta);
}
.accordion-item.open .acc-icon {
  transform: rotate(180deg);
}
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-body {
  max-height: 300px;
}
.accordion-body-inner {
  padding: 0 0 1.25rem;
}
.accordion-body-inner p {
  font-size: 0.875rem;
  color: var(--ink-faint);
  line-height: 1.7;
}
.accordion-body-inner ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.accordion-body-inner ul li {
  font-size: 0.875rem;
  color: var(--ink-faint);
}
.split-img-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img-content .img-side {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.split-img-content .img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-img-content .img-side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 26, 0.6),
    rgba(26, 46, 26, 0.2)
  );
}
.split-img-content .img-side-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}
.split-img-content .content-side {
  background: var(--forest);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.doc-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.doc-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 0.75rem 1rem;
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.08);
  border-radius: var(--radius-sm);
}
.doc-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 149, 42, 0.2);
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--gold-light);
}
.doc-item p {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.5;
}
.scholarship-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.scholarship-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.scholarship-card-header {
  padding: 1.75rem;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.scholarship-card-header::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(200, 149, 42, 0.1);
}
.scholarship-card-header h4 {
  color: var(--cream);
  font-size: 1.1rem;
  margin: 0.5rem 0 0.25rem;
}
.scholarship-card-header p {
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.8rem;
}
.scholarship-card-body {
  padding: 1.5rem;
}
.scholarship-card-body p {
  font-size: 0.875rem;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.scholarship-pct {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.scholarship-pct span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--ink-faint);
}
.sticky-apply {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 800;
  background: var(--terracotta);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-terra);
  transition: all 0.3s;
  display: none;
}
.sticky-apply:hover {
  background: var(--terra-dark);
  transform: scale(1.05);
}
.sticky-apply.visible {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.file-upload-area {
  border: 2px dashed var(--sand-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.file-upload-area:hover {
  border-color: var(--terracotta);
  background: rgba(196, 92, 58, 0.03);
}
.file-upload-area p {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 0.5rem;
}
.form-progress {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
}
.form-step-indicator {
  flex: 1;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}
.form-step-indicator::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sand-dark);
}
.form-step-indicator.active::after {
  background: var(--terracotta);
}
.form-step-indicator.done::after {
  background: var(--forest-light);
}
.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sand);
  margin: 0 auto 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-faint);
  transition: all 0.3s;
}
.form-step-indicator.active .step-dot {
  background: var(--terracotta);
  color: #fff;
}
.form-step-indicator.done .step-dot {
  background: var(--forest-light);
  color: #fff;
}
.form-step-indicator p {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-faint);
}
.form-step-indicator.active p {
  color: var(--terracotta);
}
.field-error {
  font-size: 0.75rem;
  color: var(--terracotta);
  margin-top: 0.3rem;
  display: none;
}
.field-error.visible {
  display: block;
}
.btn-step-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: none;
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-step-back:hover {
  background: var(--sand);
}
.info-banner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  background: rgba(200, 149, 42, 0.07);
}
.info-banner p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .split-img-content {
    grid-template-columns: 1fr;
  }
  .split-img-content .img-side {
    min-height: 280px;
  }
  .split-img-content .content-side {
    padding: 2rem;
  }
  .process-timeline::before {
    left: 22px;
  }
  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ══════════════════════════════════════
   ALUMNI PAGE — body.page-alumni
   ══════════════════════════════════════ */
:root {
  --a-violet: #7c3aed;
  --a-purple: #9d4edd;
  --a-lilac: #c77dff;
  --a-gold: #e8b84b;
  --a-pink: #f72585;
}
body.page-alumni {
  background: #06040f;
}
body.page-alumni .navbar.scrolled {
  background: rgba(6, 4, 15, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
body.page-alumni .hamburger span {
  background: var(--cream);
}
.al-hero {
  min-height: 100vh;
  background: #06040f;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      1px 1px at 20% 30%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 70% 20%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      2px 2px at 40% 70%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 90% 60%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 15% 85%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 100%
    );
  pointer-events: none;
}
.al-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}
.al-orb.o1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #7c3aed, transparent);
  top: -200px;
  right: -200px;
}
.al-orb.o2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f72585, transparent);
  bottom: -100px;
  left: -100px;
  opacity: 0.1;
}
.al-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.al-hero-title .violet {
  color: var(--a-lilac);
  text-shadow: 0 0 60px rgba(124, 58, 237, 0.6);
}
.alumni-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.alumni-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}
.alumni-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(20%);
}
.alumni-card:hover img {
  filter: grayscale(0%);
}
.alumni-card-body {
  padding: 1.5rem;
}
.alumni-card-body h4 {
  color: #fff;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
.alumni-card-body .class {
  color: var(--a-lilac);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.alumni-card-body .role {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  line-height: 1.5;
}
.alumni-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(6, 4, 15, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--a-lilac);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.impact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.impact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--a-violet),
    var(--a-lilac),
    var(--a-pink)
  );
}
.impact-card .big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--a-lilac), var(--a-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.impact-card .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
}
.industry-chip:hover,
.industry-chip.active {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.35);
  color: var(--a-lilac);
}
.story-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
}
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.story-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-body blockquote {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.story-body .author {
  color: var(--a-lilac);
  font-weight: 700;
  font-size: 0.9rem;
}
.story-body .details {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}
.world-band {
  background: linear-gradient(135deg, #09061a, #06040f);
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  padding: 3rem 0;
  text-align: center;
}
.al-cta {
  background: linear-gradient(135deg, #0d0820, #06040f);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .story-card {
    grid-template-columns: 1fr;
  }
  .story-card img {
    height: 240px;
  }
  .al-hero-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════
   JUNIOR PAGE — body.page-junior
   ══════════════════════════════════════ */
:root {
  --j-blue: #00b4d8;
  --j-teal: #0077b6;
  --j-cyan: #90e0ef;
  --j-gold: #ffb703;
  --j-red: #e63946;
}
body.page-junior {
  background: #05101f;
}
body.page-junior .navbar.scrolled {
  background: rgba(5, 16, 31, 0.98);
  border-bottom: 1px solid rgba(0, 180, 216, 0.15);
  box-shadow: none;
}
body.page-junior .hamburger span {
  background: var(--cream);
}
.jr-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #05101f 0%, #071a2e 50%, #051220 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.jr-hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(0, 180, 216, 0.04) 80px,
      rgba(0, 180, 216, 0.04) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(0, 180, 216, 0.04) 80px,
      rgba(0, 180, 216, 0.04) 81px
    );
}
.jr-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}
.jr-glow.g1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #00b4d8, transparent);
  top: -100px;
  right: -150px;
}
.jr-glow.g2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0077b6, transparent);
  bottom: -100px;
  left: -100px;
}
.jr-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.jr-hero-title .accent {
  color: var(--j-blue);
  text-shadow: 0 0 40px rgba(0, 180, 216, 0.5);
}
.hero-img-frame {
  position: relative;
}
.hero-img-frame .main-img {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(0, 180, 216, 0.2),
    0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 180, 216, 0.15);
}
.hero-img-frame .main-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  object-position: center top;
}
.floating-card {
  position: absolute;
  background: rgba(5, 16, 31, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
}
.floating-card .fc-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.fc-left {
  bottom: 2rem;
  left: -3rem;
}
.fc-top {
  top: 2rem;
  right: -2rem;
}
.subject-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid;
}
.chip-blue {
  background: rgba(0, 180, 216, 0.1);
  border-color: rgba(0, 180, 216, 0.3);
  color: var(--j-blue);
}
.chip-gold {
  background: rgba(255, 183, 3, 0.1);
  border-color: rgba(255, 183, 3, 0.3);
  color: var(--j-gold);
}
.chip-red {
  background: rgba(230, 57, 70, 0.1);
  border-color: rgba(230, 57, 70, 0.3);
  color: var(--j-red);
}
.chip-cyan {
  background: rgba(144, 224, 239, 0.1);
  border-color: rgba(144, 224, 239, 0.3);
  color: var(--j-cyan);
}
.subject-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
}
.subject-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--j-blue), var(--j-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.subject-card:hover::after {
  transform: scaleX(1);
}
.subject-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}
.subject-card .s-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--j-blue);
}
.subject-card h4 {
  color: #fff;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}
.subject-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.83rem;
  line-height: 1.6;
}
.activity-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.activity-row.rev {
  grid-template-columns: 1fr 1fr 1.2fr;
}
.ar-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.ar-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.ar-item:hover img {
  transform: scale(1.06);
}
.ar-item .ar-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 1rem 0.875rem 0.75rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}
.ar-item:hover .ar-cap {
  opacity: 1;
}
.achievement-band {
  background: linear-gradient(90deg, #071a2e, #051620, #071a2e);
  border-top: 1px solid rgba(0, 180, 216, 0.1);
  border-bottom: 1px solid rgba(0, 180, 216, 0.1);
  padding: 2.5rem 0;
  overflow: hidden;
}
.achieve-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scrollTrack 30s linear infinite;
}
@keyframes scrollTrack {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.achieve-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.achieve-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--j-blue);
}
.achieve-item .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.achieve-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.3);
  flex-shrink: 0;
}
.split-dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
}
.split-img {
  position: relative;
  min-height: 460px;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-body {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #07192e, #051220);
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.check-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.check-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.15);
  border: 1.5px solid var(--j-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--j-blue);
}
.check-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.jteacher {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.jteacher:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 216, 0.2);
}
.jteacher img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}
.jteacher-body {
  padding: 1.1rem;
}
.jteacher-body h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.jteacher-body p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
}
@media (max-width: 768px) {
  .jr-hero-grid,
  .split-dark {
    grid-template-columns: 1fr;
  }
  .activity-row,
  .activity-row.rev {
    grid-template-columns: 1fr 1fr;
  }
  .fc-left,
  .fc-top {
    display: none;
  }
}

/* ══════════════════════════════════════
   KINDERGARTEN PAGE — body.page-kindergarten
   ══════════════════════════════════════ */
:root {
  --k-green: #2ecc71;
  --k-green-dark: #1a8a4a;
  --k-yellow: #f9ca24;
  --k-orange: #f0932b;
  --k-purple: #6c5ce7;
  --k-pink: #fd79a8;
  --k-blue: #0984e3;
}
body.page-kindergarten .navbar.scrolled {
  background: rgba(10, 22, 40, 0.98);
  border-bottom: 1px solid rgba(46, 204, 113, 0.15);
  box-shadow: none;
}
body.page-kindergarten .hamburger span {
  background: var(--cream);
}
.kg-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 40%, #0a2818 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.kg-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.kg-hero-blob.b1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2ecc71, transparent);
  top: -100px;
  right: -100px;
}
.kg-hero-blob.b2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #f9ca24, transparent);
  bottom: -50px;
  left: -80px;
  animation-delay: -3s;
}
.kg-hero-blob.b3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #6c5ce7, transparent);
  top: 50%;
  left: 40%;
  animation-delay: -5s;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }
  33% {
    transform: scale(1.1) translate(20px, -20px);
  }
  66% {
    transform: scale(0.95) translate(-15px, 15px);
  }
}
.kg-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.kg-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.kg-hero-title .glow {
  color: var(--k-green);
  text-shadow: 0 0 40px rgba(46, 204, 113, 0.6);
}
.kg-hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.photo-stack {
  position: relative;
  height: 520px;
}
.photo-stack-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.photo-stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ps-main {
  width: 300px;
  height: 380px;
  top: 20px;
  left: 50px;
  z-index: 3;
  animation: floatImg 6s ease-in-out infinite;
}
.ps-side1 {
  width: 200px;
  height: 240px;
  top: 0;
  right: 20px;
  z-index: 2;
  animation: floatImg 6s ease-in-out infinite;
  animation-delay: -2s;
}
.ps-side2 {
  width: 180px;
  height: 200px;
  bottom: 0;
  right: 60px;
  z-index: 1;
  animation: floatImg 6s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes floatImg {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.futuristic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--k-green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--k-green);
  animation: pulse 2s infinite;
}
.prog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.prog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--k-green), var(--k-yellow));
}
.prog-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}
.prog-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--k-green);
}
.prog-card h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.prog-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.65;
}
.img-content-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  margin-bottom: 4rem;
}
.ics-img {
  position: relative;
  min-height: 400px;
}
.ics-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ics-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.5), transparent);
}
.ics-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ics-content.dark {
  background: linear-gradient(135deg, #0d1f35, #0a2818);
}
.ics-content.light {
  background: var(--warm-white);
}
.ics-content.terra {
  background: linear-gradient(135deg, #1a0a05, #2a1008);
}
.activity-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 0.75rem;
}
.am-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.am-item.tall {
  grid-row: span 2;
}
.am-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.am-item:hover img {
  transform: scale(1.06);
}
.am-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem 1rem 0.875rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}
.am-item:hover .am-label {
  opacity: 1;
}
.stat-glow {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
}
.stat-glow .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--k-green), var(--k-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-glow .lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.teacher-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}
.teacher-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
}
.teacher-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}
.teacher-card-body {
  padding: 1.25rem;
}
.teacher-card-body h4 {
  color: #fff;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
.teacher-card-body p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}
.testi-dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
}
.testi-dark blockquote {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.testi-dark .author {
  color: var(--k-green);
  font-weight: 600;
  font-size: 0.875rem;
}
.testi-dark .role {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
}
@media (max-width: 768px) {
  .kg-hero-grid,
  .img-content-strip {
    grid-template-columns: 1fr;
  }
  .activity-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .am-item.tall {
    grid-row: span 1;
  }
  .photo-stack {
    height: 300px;
  }
}

/* ══════════════════════════════════════
   SENIOR PAGE — body.page-senior
   ══════════════════════════════════════ */
:root {
  --s-gold: #e8b84b;
  --s-amber: #c9853a;
  --s-white: #f5f0e8;
  --s-red: #e63946;
  --s-green: #2ecc71;
}
body.page-senior {
  background: #080808;
}
body.page-senior .navbar.scrolled {
  background: rgba(8, 8, 8, 0.98);
  border-bottom: 1px solid rgba(232, 184, 75, 0.15);
  box-shadow: none;
}
body.page-senior .hamburger span {
  background: var(--cream);
}
.sr-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
  background: #080808;
}
.sr-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1529390079861-591de354faf5?w=1600&q=70&auto=format&fit=crop");
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.2) saturate(0.4);
}
.sr-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.7) 60%,
    rgba(8, 8, 8, 0.4) 100%
  );
}
.sr-hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 120px,
    rgba(232, 184, 75, 0.03) 120px,
    rgba(232, 184, 75, 0.03) 121px
  );
}
.sr-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.sr-hero-title .gold {
  color: var(--s-gold);
  text-shadow: 0 0 60px rgba(232, 184, 75, 0.4);
}
.sr-hero-title .outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  color: transparent;
}
.path-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.path-card:hover {
  transform: translateY(-8px);
}
.path-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}
.path-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.3) 50%,
    transparent 100%
  );
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.path-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.path-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.path-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.83rem;
  line-height: 1.6;
}
.path-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--s-gold);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.75rem;
  transition: gap 0.2s;
}
.path-card:hover .path-card-arrow {
  gap: 0.75rem;
}
.sub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.sub-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1.25rem;
  transition: all 0.3s;
}
.sub-item:hover {
  background: rgba(232, 184, 75, 0.06);
  border-color: rgba(232, 184, 75, 0.2);
}
.sub-item .emoji {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--s-gold);
}
.sub-item h5 {
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}
.sub-item p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.76rem;
  line-height: 1.5;
}
.uni-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
}
.uni-logo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.875rem 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
}
.uni-logo:hover {
  background: rgba(232, 184, 75, 0.08);
  border-color: rgba(232, 184, 75, 0.2);
  color: var(--s-gold);
}
.results-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rb-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rb-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  width: 80px;
  text-align: right;
  flex-shrink: 0;
}
.rb-track {
  flex: 1;
  height: 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  overflow: hidden;
}
.rb-fill {
  height: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.rb-fill.gold {
  background: linear-gradient(90deg, var(--s-amber), var(--s-gold));
}
.rb-fill.green {
  background: linear-gradient(90deg, #1a8a4a, var(--s-green));
}
.rb-fill.blue {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
}
.sr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
}
.sr-split-img {
  position: relative;
  min-height: 500px;
}
.sr-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sr-split-body {
  padding: 3.5rem;
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.uni-pathway {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.up-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}
.up-item:last-child {
  padding-bottom: 0;
}
.up-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--s-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--s-gold);
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: #0d0d0d;
}
.up-item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 0;
  width: 1px;
  background: rgba(232, 184, 75, 0.2);
}
.up-item:last-child::before {
  display: none;
}
.up-body h5 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.up-body p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  line-height: 1.6;
}
.info-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ir-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ir-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.ir-item p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .sub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sr-split {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   ACTIVITIES PAGE — body.page-activities
   ══════════════════════════════════════ */
:root {
  --teal: #2a7a7a;
}
body.page-activities .navbar,
body.page-activities .navbar.scrolled {
  background: rgba(26, 46, 26, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 151, 58, 0.18);
  box-shadow: none;
}
body.page-activities .logo-emblem {
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
}
body.page-activities .logo-name {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
}
body.page-activities .logo-sub {
  color: rgba(250, 247, 242, 0.55);
}
body.page-activities .filter-tab {
  padding: 1.1rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.5);
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  background: none;
  font-family: "DM Sans", sans-serif;
}
body.page-activities .filter-tab:hover {
  color: var(--cream);
  background: none;
}
body.page-activities .filter-tab.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  background: none;
}
body.page-activities .site-footer {
  background: #111e11;
  color: rgba(250, 247, 242, 0.5);
  padding: 3rem 2rem;
}
.nav-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.2s;
}
.nav-back:hover {
  gap: 0.75rem;
  color: var(--gold);
}
.nav-back-arrow {
  font-size: 1rem;
}
.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #0e1f0e 0%,
    #1e3a1e 40%,
    #2d5a27 75%,
    #c8973a22 100%
  );
}
.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8973a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-ring {
  position: absolute;
  right: -8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  max-width: 700px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(200, 151, 58, 0.12);
  pointer-events: none;
}
.hero-ring::before {
  content: "";
  position: absolute;
  inset: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(200, 151, 58, 0.08);
}
.hero-ring::after {
  content: "";
  position: absolute;
  inset: 6rem;
  border-radius: 50%;
  border: 1px solid rgba(200, 151, 58, 0.06);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 4rem 2rem 4.5rem;
}
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
  margin-bottom: 1.5rem;
}
.hero-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.hero-breadcrumb a:hover {
  color: var(--gold-light);
}
.hero-breadcrumb span {
  color: var(--gold-light);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow-line {
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
}
.eyebrow-text {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(250, 247, 242, 0.65);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.h-stat {
  text-align: left;
}
.h-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.h-stat-lbl {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}
.filter-bar {
  background: var(--forest);
  position: sticky;
  top: 72px;
  z-index: 800;
  border-bottom: 1px solid rgba(200, 151, 58, 0.12);
}
.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar {
  display: none;
}
.result-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.result-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.result-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 26, 0.6) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
}
.result-badge-big {
  background: var(--gold);
  color: var(--forest);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.result-badge-big small {
  font-size: 0.8rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  margin-top: 0.25rem;
}
.result-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.result-info p {
  color: var(--ink-faint);
  margin-bottom: 1.5rem;
}
.grade-bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.grade-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.grade-label {
  font-size: 0.8rem;
  font-weight: 600;
  width: 2.5rem;
  color: var(--forest-mid);
}
.grade-track {
  flex: 1;
  height: 8px;
  background: var(--cream-dark);
  border-radius: 999px;
  overflow: hidden;
}
.grade-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.grade-pct {
  font-size: 0.78rem;
  color: var(--ink-faint);
  width: 3rem;
  text-align: right;
}
.award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.award-card {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.award-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.award-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.award-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.award-card p {
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.sports-header {
  margin-bottom: 3.5rem;
}
.sports-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.sports-header p {
  color: rgba(250, 247, 242, 0.55);
  max-width: 540px;
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 220px;
  gap: 0.75rem;
}
.sport-tile {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}
.sport-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.sport-tile:hover img {
  transform: scale(1.04);
}
.sport-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 30, 15, 0.88) 0%,
    transparent 55%
  );
  transition: opacity 0.3s;
}
.sport-tile:hover .sport-tile-overlay {
  opacity: 0.95;
}
.sport-tile-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.sport-tile-body .badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.badge-gold {
  background: var(--gold);
  color: var(--forest);
}
.badge-terra {
  background: var(--terracotta);
  color: #fff;
}
.badge-teal {
  background: var(--teal);
  color: #fff;
}
.badge-forest {
  background: var(--forest-light);
  color: #fff;
}
.badge-blue {
  background: #2563eb;
  color: #fff;
}
.sport-tile-body h3 {
  color: var(--cream);
  font-size: 1.15rem;
  line-height: 1.3;
}
.sport-tile-body h4 {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.3;
}
.sport-tile-body p {
  color: rgba(250, 247, 242, 0.65);
  font-size: 0.82rem;
  margin-top: 0.35rem;
}
.st-1 {
  grid-column: span 5;
}
.st-2 {
  grid-column: span 4;
}
.st-3 {
  grid-column: span 3;
}
.st-4 {
  grid-column: span 4;
}
.st-5 {
  grid-column: span 4;
}
.st-6 {
  grid-column: span 4;
}
.trophies-strip {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.trophy-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(200, 151, 58, 0.2);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  color: var(--cream);
  font-size: 0.85rem;
}
.trophy-pill .icon {
  font-size: 1.1rem;
}
.arts-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.arts-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.arts-text p {
  color: var(--ink-faint);
  margin-bottom: 2rem;
}
.arts-programmes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.arts-prog-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  transition: transform 0.25s;
}
.arts-prog-item:hover {
  transform: translateX(6px);
}
.prog-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.prog-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.prog-info p {
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.arts-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 0.75rem;
}
.arts-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.arts-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.arts-img:hover img {
  transform: scale(1.04);
}
.arts-img-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(26, 46, 26, 0.8);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.arts-img-wide {
  grid-column: span 2;
}
.inno-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.inno-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.inno-header p {
  color: rgba(250, 247, 242, 0.55);
  max-width: 540px;
  margin: 0 auto;
}
.inno-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.inno-card {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(200, 151, 58, 0.15);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.inno-card:hover {
  background: rgba(250, 247, 242, 0.08);
  border-color: rgba(200, 151, 58, 0.35);
  transform: translateY(-4px);
}
.inno-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.inno-card h4 {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.inno-card p {
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.85rem;
}
.inno-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(200, 151, 58, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.inno-feature-img {
  aspect-ratio: 4/3;
}
.inno-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inno-feature-text {
  padding: 2.5rem 2.5rem 2.5rem 0;
}
.inno-feature-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}
.inno-feature-text p {
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.inno-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.inno-tag {
  background: rgba(200, 151, 58, 0.15);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.community-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.community-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.community-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.community-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.community-img:hover img {
  transform: scale(1.04);
}
.community-img-tall {
  grid-row: span 2;
}
.community-img-tall img {
  height: 100%;
}
.community-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.community-text p {
  color: var(--ink-faint);
  margin-bottom: 1.75rem;
}
.impact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.impact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: var(--cream-dark);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.impact-item .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.impact-item h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.impact-item p {
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.schol-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.schol-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
}
.schol-intro p {
  color: var(--ink-faint);
}
.schol-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.schol-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--forest);
  padding: 2rem;
  transition: transform 0.3s;
}
.schol-card:hover {
  transform: translateY(-5px);
}
.schol-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.schol-card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.schol-card h4 {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.schol-card p {
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.82rem;
}
.uni-logos {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--warm-white);
  border-radius: var(--radius-xl);
}
.uni-logos-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: 0.5rem;
  white-space: nowrap;
}
.uni-tag {
  background: var(--cream-dark);
  color: var(--forest-mid);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}
.page-cta {
  background: var(--forest);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center top,
    rgba(200, 151, 58, 0.15) 0%,
    transparent 60%
  );
}
.page-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}
.page-cta h2 em {
  color: var(--gold-light);
  font-style: italic;
}
.page-cta p {
  color: rgba(250, 247, 242, 0.6);
  margin-bottom: 2.5rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-inner p {
  font-size: 0.82rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.anim.visible {
  opacity: 1;
  transform: none;
}
.anim-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.anim-left.visible {
  opacity: 1;
  transform: none;
}
.anim-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.anim-right.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .result-hero,
  .arts-layout,
  .community-layout,
  .schol-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sports-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .st-1,
  .st-2,
  .st-3,
  .st-4,
  .st-5,
  .st-6 {
    grid-column: span 1;
  }
  .inno-grid,
  .schol-cards {
    grid-template-columns: 1fr 1fr;
  }
  .award-grid {
    grid-template-columns: 1fr 1fr;
  }
  .inno-feature {
    grid-template-columns: 1fr;
  }
  .inno-feature-text {
    padding: 2rem;
  }
}
@media (max-width: 600px) {
  .inno-grid,
  .schol-cards,
  .award-grid {
    grid-template-columns: 1fr;
  }
  .sports-grid {
    grid-template-columns: 1fr;
  }
  .arts-gallery {
    grid-template-columns: 1fr;
  }
  .arts-img-wide {
    grid-column: span 1;
  }
  .community-img-tall {
    grid-row: span 1;
  }
  .community-img img,
  .community-img-tall img {
    height: 200px;
  }
}

/* ══════════════════════════════════════
   NOTABLE ALUMNI PAGE — body.page-notable-alumni
   ══════════════════════════════════════ */
body.page-notable-alumni {
  background: #06040f;
  color: #fff;
}
body.page-notable-alumni .navbar,
body.page-notable-alumni .navbar.scrolled {
  background: rgba(6, 4, 15, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
}
body.page-notable-alumni .logo-name {
  color: #fff;
}
body.page-notable-alumni .logo-sub {
  color: rgba(255, 255, 255, 0.65);
}
body.page-notable-alumni .nav-link {
  color: rgba(255, 255, 255, 0.85);
}
body.page-notable-alumni .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
body.page-notable-alumni .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
body.page-notable-alumni .btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
}
body.page-notable-alumni footer {
  background: #08050e;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
body.page-notable-alumni .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
body.page-notable-alumni .footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}
body.page-notable-alumni .footer-col h5 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
body.page-notable-alumni .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
body.page-notable-alumni .footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
body.page-notable-alumni .footer-col a:hover {
  color: var(--a-lilac);
}
body.page-notable-alumni .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.notable-hero {
  padding: 120px 0 60px;
  background: linear-gradient(to bottom, #09061a, #06040f);
  position: relative;
  overflow: hidden;
}
.hero-title-notable {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-subtitle-notable {
  color: var(--a-lilac);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}
.profile-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.profile-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
}
.profile-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.profile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.profile-section:hover .profile-image-wrap img {
  transform: scale(1.05);
}
.profile-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--a-lilac);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}
.profile-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.profile-category {
  color: var(--a-lilac);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: block;
}
.profile-achievement {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-style: italic;
  border-left: 3px solid var(--terracotta);
  padding-left: 1.5rem;
}
.profile-story {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.profile-quote {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 16px;
  position: relative;
  margin-top: 2rem;
}
.profile-quote i {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
  color: var(--a-lilac);
  opacity: 0.2;
}
.profile-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
