/* ── Variables ─────────────────────────────── */
:root {
  --gold: #00b4d8;
  --gold-lt: #e8b84b;
  --gold-sft: #f9f0de;
  --ink: #001e55;
  --ink-80: rgba(24, 20, 18, 0.8);
  --slate: #5a5550;
  --cream: #faf8f4;
  --cream-dk: #f5f1ea;
  --border: #e8e0d0;
  --white: #ffffff;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 3px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 36px rgba(0, 0, 0, 0.11);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.14);
  --t: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: white;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--cream-dk);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 99px;
}

/* ── Announcement Strip ─────────────────────── */
.ann-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 2rem;
  text-align: center;
}
.ann-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.ann-sep {
  color: var(--gold);
  margin: 0 0.3rem;
}

/* ── Navbar ─────────────────────────────────── */
.vis-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.vis-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1rem;
}

/* Logo */
.vis-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}
.vis-logo-crest {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.crest-v {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.small-crest {
  width: 40px;
  height: 40px;
}
.small-v {
  font-size: 1.3rem;
}

.vis-logo-text {
  display: flex;
  flex-direction: column;
}
.vis-school-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.vis-school-sub {
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  color: var(--slate);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

/* Nav links */
.vis-nav-links {
  display: flex;
  list-style: none;
  gap: 0.1rem;
  align-items: center;
}
.vlink {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: var(--t);
  position: relative;
  letter-spacing: 0.01em;
}
.vlink::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--gold);
  border-radius: 99px;
  transition: var(--t);
}
.vlink:hover,
.vlink.active {
  color: var(--ink);
}
.vlink:hover::after,
.vlink.active::after {
  left: 12%;
  right: 12%;
}

/* CTA button */
.vis-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: white;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.vis-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), red);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.vis-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: white;
}
.vis-cta-btn:hover::before {
  opacity: 1;
}
.vis-cta-btn.large {
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
}
.vis-cta-btn.w-full {
  width: 100%;
}

/* Ghost button */
.vis-ghost-btn {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: var(--t);
}
.vis-ghost-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.vis-ghost-btn.large {
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
}

/* Hamburger */
.vis-hmb {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.vis-hmb span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
}
.vis-hmb.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.vis-hmb.open span:nth-child(2) {
  opacity: 0;
}
.vis-hmb.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.vis-drawer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.vdrawer-link {
  padding: 0.65rem 0.75rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: var(--t);
}
.vdrawer-link:hover {
  background: var(--gold-sft);
  color: var(--ink);
}

/* ── Hero ───────────────────────────────────── */
.vis-hero {
  position: relative;
  min-height: 92vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 8rem;
}

/* Decorative grid lines */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hgl {
  position: absolute;
  background: linear-gradient(
    180deg,
    transparent,
    var(--border) 50%,
    transparent
  );
  width: 1px;
  opacity: 0.6;
}
.hgl-1 {
  left: 20%;
  top: 0;
  bottom: 0;
}
.hgl-2 {
  left: 50%;
  top: 0;
  bottom: 0;
}
.hgl-3 {
  right: 20%;
  top: 0;
  bottom: 0;
}

/* Gold arc */
.hero-arc {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 100px solid rgba(201, 151, 44, 0.06);
  pointer-events: none;
}

.vis-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .vis-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vis-hero-right {
    display: none;
  }
}

/* Pill */
.vis-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-sft);
  border: 1.5px solid rgba(201, 151, 44, 0.3);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink-dot 2s ease infinite;
}
@keyframes blink-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* H1 */
.vis-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.vis-h1 em {
  font-style: italic;
  color: var(--gold);
}

.vis-hero-p {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.2rem;
}

.vis-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Metrics */
.vis-metrics {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.vis-metric {
  display: flex;
  flex-direction: column;
  padding-right: 2.5rem;
}
.vm-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.vm-label {
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.vm-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
  margin-right: 2.5rem;
}

/* Hero frame */
.vis-hero-right {
  display: flex;
  justify-content: center;
}
.vis-hero-frame {
  position: relative;
  width: 550px;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vhf-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid #3bb4fa75;
  animation: spin-ring 30s linear infinite;
}
.ring-outer {
  width: 100%;
  height: 100%;
}
.ring-inner {
  width: 72%;
  height: 72%;
  animation-direction: reverse;
  animation-duration: 20s;
}
@keyframes spin-ring {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.vhf-emblem {
  position: relative;
  z-index: 5;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

/* Orbiting badges */
.orbit-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgb(0, 19, 80);
  border: 2px solid white;
  border-radius: 99px;
  padding: 0.4rem 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  /* box-shadow: var(--shadow-sm); */
  white-space: nowrap;
  animation: float-ob 5s ease-in-out infinite;
}
.ob-1 {
  top: 28px;
  left: 20px;
  animation-delay: 0s;
}
.ob-2 {
  top: 28px;
  right: 20px;
  animation-delay: 1.2s;
}
.ob-3 {
  bottom: 28px;
  left: 20px;
  animation-delay: 2.4s;
}
.ob-4 {
  bottom: 28px;
  right: 20px;
  animation-delay: 0.8s;
}
@keyframes float-ob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Subject tags */
.subj-tag {
  position: absolute;
  background: rgba(28, 214, 214, 0.11);
  border: 1.5px solid rgba(43, 212, 52, 0.3);
  border-radius: var(--r-sm);
  padding: 0.3rem 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  animation: float-ob 6s ease-in-out infinite;
}
.st-a {
  top: 50%;
  right: -10px;
  transform: translateY(-80px);
  animation-delay: 0.5s;
}
.st-b {
  top: 50%;
  left: -10px;
  transform: translateY(30px);
  animation-delay: 1.5s;
}
.st-c {
  top: 10%;
  left: 45%;
  transform: translateX(-30px);
  animation-delay: 2s;
}
.st-d {
  bottom: 10%;
  right: 43%;
  animation-delay: 3s;
}

/* Hero bottom border */
.hero-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Fade-up animations ──────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fade-up-anim 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--d, 0s);
}
.fade-left {
  opacity: 0;
  transform: translateX(36px);
  animation: fade-left-anim 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fade-up-anim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-left-anim {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-up {
  transform: translateY(40px);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}
.revealed {
  opacity: 1 !important;
  transform: none !important;
}
/* Stagger via inline var */
.reveal-up[style*="--delay"] {
  transition-delay: var(--delay, 0s);
}

/* ── Ticker ──────────────────────────────────── */
.vis-ticker {
  display: flex;
  align-items: stretch;
  background: var(--gold-sft);
  border-top: 1px solid rgba(201, 151, 44, 0.25);
  border-bottom: 1px solid rgba(201, 151, 44, 0.25);
  overflow: hidden;
  height: 44px;
}
.ticker-label {
  background: var(--gold);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track-wrap {
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  animation: scroll-ticker 28s linear infinite;
  width: max-content;
}
.tx-dot {
  color: var(--gold);
}
@keyframes scroll-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Section Shared ──────────────────────────── */
.vis-section {
  padding: 6rem 0;
}
.vis-section-head {
  text-align: left;
  margin-bottom: 4rem;
}
.vis-section-head.center,
.vis-section-head .center {
  text-align: center;
}

.vis-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.vis-eyebrow.center {
  display: block;
  text-align: center;
}

.vis-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.vis-h2 em {
  font-style: italic;
  color: var(--gold);
}
.vis-h2.center {
  text-align: center;
}
.vis-h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.vis-h3 em {
  font-style: italic;
  color: var(--gold);
}

.vis-body-p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.8;
}
.vis-section-sub {
  font-size: 1rem;
  color: var(--slate);
  max-width: 520px;
  margin: 1rem auto 0;
  text-align: center;
  line-height: 1.75;
}

/* Gold Rule */
.gold-rule {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 99px;
  margin: 1.2rem 0;
}
.gold-rule.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ── About ───────────────────────────────────── */
.vis-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .vis-about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual-col {
    display: none;
  }
}

.about-big-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
}
.abc-top {
  padding: 1.5rem;
}
.abc-icon-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.abc-icon-box {
  width: 56px;
  height: 56px;
  background: var(--bg, #f9f0de);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.abc-img-placeholder {
  border-radius: var(--r-md);
  background: var(--cream-dk);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.main-ph {
  height: 350px;
}
.abc-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
  padding: 0 1.5rem 1.5rem;
}
.sm-ph {
  height: 120px;
}
.abc-stat-box {
  background: var(--ink);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
}
.asb-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.asb-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.about-checklist {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.acl-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate);
}
.acl-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Class Showcase ──────────────────────────── */
.class-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .class-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .class-showcase {
    grid-template-columns: 1fr;
  }
}

.cs-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  transition-delay: var(--delay, 0s);
}
.cs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 2px solid var(--ac, var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cs-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cs-card:hover::after {
  opacity: 1;
}

.cs-card.cs-large {
  grid-row: span 1;
  background: linear-gradient(160deg, var(--white), var(--gold-sft));
}

.csc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 151, 44, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  letter-spacing: -0.04em;
}
.csc-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.csc-age {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.csc-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.csc-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
  flex: 1;
}
.csc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}
.csc-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--cream-dk);
  color: var(--slate);
  border: 1px solid var(--border);
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
}
.csc-footer {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.bento-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--t);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento-card.bc-tall {
  grid-row: span 2;
  justify-content: flex-end;
}
.bento-card.bc-wide {
  grid-column: span 2;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgb(255, 255, 255);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  border: #00b4d8 solid 2px;
  box-shadow: 4px 4px 0px #00b4d8;
  margin-bottom: 15px;
}
.bento-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}
.bento-desc {
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.bento-tag {
  width: max-content;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--ink);
  border: 1px solid #00b1f7;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  margin-top: 0.85rem;
  z-index: 1;
}

/* ── Why Strip ───────────────────────────────── */
.vis-why-strip {
  padding: 6rem 0;
  background: #080166;
  position: relative;
  overflow: hidden;
}
.vis-why-strip::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 151, 44, 0.08) 0%,
    transparent 70%
  );
}

.vis-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .vis-why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.vwg-text .vis-eyebrow {
  color: var(--gold);
}
.vwg-text .vis-h2 {
  color: white;
}
.vwg-text .vis-body-p {
  color: rgba(255, 255, 255, 0.6);
}

.vis-why-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.vwl-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.vwl-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.vwl-item h5 {
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.vwl-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.vwg-testimonials .vis-eyebrow {
  color: var(--gold);
}
.vwg-testimonials .vis-h3 {
  color: white;
}

.vis-tcard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  margin-bottom: 1.25rem;
  position: relative;
  transition: var(--t);
}
.vis-tcard:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 151, 44, 0.3);
}
.vtc-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}
.vis-tcard > p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}
.vtc-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.2rem;
}
.vtc-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--c, linear-gradient(135deg, #00b4d8, #e8b84b));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
}
.vtc-author strong {
  display: block;
  font-size: 0.9rem;
  color: white;
}
.vtc-author span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.vtc-stars {
  display: flex;
  gap: 2px;
  margin-top: 0.2rem;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ── Faculty ─────────────────────────────────── */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .faculty-grid {
    grid-template-columns: 1fr;
  }
}

.fac-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  transition-delay: var(--delay, 0s);
}
.fac-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fac-photo {
  height: 140px;
  background: var(--gc);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fac-exp-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  backdrop-filter: blur(6px);
}
.fac-body {
  padding: 1.3rem;
}
.fac-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.fac-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.fac-qual {
  font-size: 0.72rem;
  color: var(--slate);
  margin-bottom: 0.6rem;
  font-style: italic;
}
.fac-bio {
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
.fac-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.fac-subjects span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--gold-sft);
  color: var(--gold);
  border: 1px solid rgba(201, 151, 44, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
}

/* ── Gallery ─────────────────────────────────── */
.vis-gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.vgf {
  padding: 0.45rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--slate);
  border-radius: 99px;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition: var(--t);
}
.vgf:hover,
.vgf.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.vis-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
@media (max-width: 900px) {
  .vis-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .vis-gallery {
    grid-template-columns: 1fr;
  }
}

.vg-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--t);
  border: 1.5px solid var(--border);
}
.vg-item.vg-h2 {
  grid-row: span 2;
}
.vg-item.vg-w2 {
  grid-column: span 2;
}

.vg-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.vg-ph {
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.vg-ph p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  margin-top: 0.6rem;
}
.vg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 18, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t);
}
.vg-item:hover .vg-overlay {
  opacity: 1;
}

/* ── Admissions ──────────────────────────────── */
.vis-admissions {
  padding: 6rem 0;
  background: var(--cream-dk);
  position: relative;
  overflow: hidden;
}
.vis-admissions::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.vis-adm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .vis-adm-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.adm-steps {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
}
.adm-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ads-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.adm-step h5 {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.adm-step p {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.6;
}
.adm-step-line {
  width: 1px;
  height: 28px;
  background: var(--border);
  margin-left: 21px;
}
.adm-docs-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.2rem 1.5rem;
  margin-top: 1.5rem;
}

/* Form card */
.adm-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.adm-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ink), var(--gold));
}
.afc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.vis-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .vis-form-row {
    grid-template-columns: 1fr;
  }
}

.vf-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.vf-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.vf-input {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  background: var(--cream);
  outline: none;
  transition: var(--t);
  width: 100%;
}
.vf-input:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 151, 44, 0.1);
}
.vf-textarea {
  resize: vertical;
  min-height: 90px;
}

.vis-success-box {
  text-align: center;
  padding: 3rem 1rem;
}
.vsb-icon {
  animation: pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes pop-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ── Events ──────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

.evt-card {
  display: flex;
  gap: 1.2rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: var(--t);
  transition-delay: var(--delay, 0s);
  align-items: flex-start;
}
.evt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.evt-date-col {
  flex-shrink: 0;
  width: 60px;
  background: var(--dc, var(--gold-sft));
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.4rem;
  color: var(--dtc, var(--gold));
  border: 1px solid rgba(201, 151, 44, 0.2);
}
.edc-day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.edc-mon {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.edc-yr {
  font-size: 0.55rem;
  opacity: 0.6;
  margin-top: 0.15rem;
}

.evt-type {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate);
}
.evt-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0.3rem 0 0.5rem;
}
.evt-desc {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}
.evt-time {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── Contact ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .vis-hero-frame {
  
    width: 370px;
    height: 370px;
   
  }
  .vis-section, .vis-why-strip, .vis-admissions {
  padding: 3rem 0;
}
}

.ctc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--t);
  transition-delay: var(--delay, 0s);
}
.ctc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.ctc-icon {
  width: 56px;
  height: 56px;
  background: var(--ink);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.ctc-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.ctc-card p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
}
.ctc-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: 0.75rem;
  transition: var(--t);
}
.ctc-link:hover {
  gap: 0.5rem;
}

.vis-map-ph {
  width: 100%;
  height: 280px;
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
}

/* ── Footer ──────────────────────────────────── */
.vis-footer {
  background: var(--ink);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.vf-top-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr  1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .vf-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .vf-top-grid {
    grid-template-columns: 1fr;
  }
  .orbit-badge {
    font-size: 0.75rem;
  }
  .subj-tag {
    font-size: 0.70rem;
  }
}

.vis-footer .vis-school-name {
  color: rgba(255, 255, 255, 0.9);
}
.vis-footer .vis-school-sub {
  color: rgba(255, 255, 255, 0.4);
}
.vis-footer .vis-logo-crest {
  border-color: var(--gold);
}

.vf-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 260px;
  margin: 1rem 0 1.5rem;
}
.vf-socials {
  display: flex;
  gap: 0.5rem;
}
.vfs {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--t);
}
.vfs:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-3px);
}

.vf-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.vf-link {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 0.2rem 0;
  transition: var(--t);
}
.vf-link:hover {
  color: var(--gold);
  padding-left: 4px;
}

.vf-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vfh-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.4rem;
}
.vfh-row span:last-child {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.vf-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Back To Top ─────────────────────────────── */
#vis-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 46px;
  height: 46px;
  background: var(--ink);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  transition: var(--t);
  opacity: 0;
  pointer-events: none;
}
#vis-top.show {
  opacity: 1;
  pointer-events: all;
}
#vis-top:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-4px);
}
