/* ── Design Tokens ── */
:root {
  --ink: #0a0f1e;
  --ink-2: #1a2240;
  --ink-3: #2e3b5e;
  --body: #4a5578;
  --muted: #7b8db0;
  --border: #e2e8f5;
  --surface: #f5f7fd;
  --paper: #fafbff;
  --white: #ffffff;

  --indigo: #4361ee;
  --indigo-d: #2d4be8;
  --indigo-l: #eef2ff;
  --violet: #7c3aed;
  --violet-l: #f3ecff;
  --teal: #0ea5b0;
  --teal-l: #e0f7fa;
  --amber: #f59e0b;
  --amber-l: #fffbeb;
  --rose: #f43f5e;
  --rose-l: #fff1f3;
  --emerald: #10b981;
  --emerald-l: #ecfdf5;

  --g-brand: linear-gradient(135deg, #4361ee, #7c3aed);
  --g-warm: linear-gradient(135deg, #f59e0b, #f43f5e);
  --g-teal: linear-gradient(135deg, #0ea5b0, #4361ee);
  --g-fresh: linear-gradient(135deg, #10b981, #0ea5b0);
  --g-full: linear-gradient(135deg, #4361ee, #7c3aed, #f43f5e);
  --g-hero-bg:
    radial-gradient(
      ellipse 80% 60% at 80% 0%,
      rgba(67, 97, 238, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 10% 100%,
      rgba(124, 58, 237, 0.06) 0%,
      transparent 55%
    ),
    #fafbff;

  --shadow-xs: 0 1px 4px rgba(10, 15, 40, 0.05);
  --shadow-sm: 0 2px 12px rgba(10, 15, 40, 0.07);
  --shadow-md: 0 6px 28px rgba(10, 15, 40, 0.09);
  --shadow-lg: 0 14px 52px rgba(10, 15, 40, 0.12);
  --shadow-brand: 0 8px 32px rgba(67, 97, 238, 0.28);
  --shadow-warm: 0 8px 32px rgba(244, 63, 94, 0.22);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  cursor: pointer;
  background: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f0f2fb;
}
::-webkit-scrollbar-thumb {
  background: var(--g-brand);
  border-radius: 99px;
}

/* ── Typography ── */
.font-display {
  font-family: "Outfit", sans-serif;
}
.t-display {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 140%;
}
.t-h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.t-h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.t-body {
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--body);
}

/* Gradient texts */
.gt-brand {
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gt-warm {
  background: var(--g-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gt-teal {
  background: var(--g-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gt-full {
  background: var(--g-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradShift 4s ease infinite;
}
@keyframes gradShift {
  0%,
  100% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
}

/* ══════════════════════════════════════
   SHARED COMPONENTS (Custom CSS 40%)
══════════════════════════════════════ */

/* Eyebrow pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ey-indigo {
  background: var(--indigo-l);
  color: var(--indigo);
  border: 1.5px solid rgba(67, 97, 238, 0.2);
}
.ey-violet {
  background: var(--violet-l);
  color: var(--violet);
  border: 1.5px solid rgba(124, 58, 237, 0.2);
}
.ey-teal {
  background: var(--teal-l);
  color: var(--teal);
  border: 1.5px solid rgba(14, 165, 176, 0.2);
}
.ey-amber {
  background: var(--amber-l);
  color: #d97706;
  border: 1.5px solid rgba(245, 158, 11, 0.2);
}
.ey-rose {
  background: var(--rose-l);
  color: var(--rose);
  border: 1.5px solid rgba(244, 63, 94, 0.2);
}
.ey-emerald {
  background: var(--emerald-l);
  color: var(--emerald);
  border: 1.5px solid rgba(16, 185, 129, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}
.btn-md {
  padding: 12px 28px;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

.btn-brand {
  background: var(--g-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(67, 97, 238, 0.38);
}

.btn-warm {
  background: var(--g-warm);
  color: #fff;
  box-shadow: var(--shadow-warm);
}
.btn-warm:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(244, 63, 94, 0.32);
}

.btn-outline-brand {
  background: transparent;
  color: var(--indigo);
  border: 2px solid var(--indigo);
}
.btn-outline-brand:hover {
  background: var(--indigo);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-2);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost-light:hover {
  background: #fff;
  border-color: rgba(67, 97, 238, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Ripple */
.ripple {
  position: relative;
  overflow: hidden;
}
.rpl {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rplAnim 0.65s linear forwards;
  pointer-events: none;
}
@keyframes rplAnim {
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* Scroll Reveal */
[data-sr] {
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  opacity: 0;
}
[data-sr="up"] {
  transform: translateY(36px);
}
[data-sr="left"] {
  transform: translateX(-36px);
}
[data-sr="right"] {
  transform: translateX(36px);
}
[data-sr="scale"] {
  transform: scale(0.88);
}
[data-sr].on {
  opacity: 1;
  transform: none;
}
[data-sd="1"] {
  transition-delay: 0.08s;
}
[data-sd="2"] {
  transition-delay: 0.16s;
}
[data-sd="3"] {
  transition-delay: 0.24s;
}
[data-sd="4"] {
  transition-delay: 0.32s;
}
[data-sd="5"] {
  transition-delay: 0.4s;
}
[data-sd="6"] {
  transition-delay: 0.48s;
}

/* ══════════════════════════════════════
   ① NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed;
  inset-inline: 0;
  top: 12px;
  z-index: 1000;
  padding-inline: clamp(0.75rem, 3vw, 1.5rem);
}
.nav-pill {
  max-width: 1200px;
  margin-inline: auto;
  height: 64px;
  padding-inline: clamp(0.5rem, 2vw, 0.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(67, 97, 238, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 24px rgba(10, 15, 40, 0.06);
}
#navbar.scrolled .nav-pill {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 40px rgba(10, 15, 40, 0.1);
  border-color: rgba(67, 97, 238, 0.18);
}

/* Logo mark hex */
.logo-hex {
  width: 36px;
  height: 36px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--g-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-name {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.1;
}
.logo-name em {
  color: var(--indigo);
  font-style: normal;
}
.logo-tag {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

/* Nav link hover underline */
.nl {
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--body);
  transition: all 0.2s;
  position: relative;
}
.nl:hover {
  color: var(--indigo);
  background: var(--indigo-l);
}

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 251, 255, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mob-menu.open {
  display: flex;
  opacity: 1;
}
.mob-link {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(10, 15, 40, 0.3);
  letter-spacing: -0.03em;
  padding: 5px 24px;
  transition: color 0.2s;
}
.mob-link:hover {
  color: var(--indigo);
}
.mob-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body);
  font-size: 1.1rem;
  transition: all 0.2s;
}
.mob-close:hover {
  background: var(--rose-l);
  border-color: var(--rose);
  color: var(--rose);
}

.ham-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: all 0.3s;
}
.ham.open .ham-bar:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.ham.open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ham.open .ham-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ══════════════════════════════════════
   ② HERO
══════════════════════════════════════ */
#hero {
  background: var(--g-hero-bg);
  min-height: 100svh;
  /* padding-top: 90px; */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Decorative dot grid */
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(67, 97, 238, 0.12) 1px,
    transparent 1.5px
  );
  background-size: 36px 36px;
  opacity: 0.8;
}
/* Floating blobs */
.h-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hb1 {
  width: 520px;
  height: 520px;
  background: rgba(67, 97, 238, 0.07);
  top: -80px;
  right: -80px;
}
.hb2 {
  width: 380px;
  height: 380px;
  background: rgba(124, 58, 237, 0.06);
  bottom: 80px;
  left: -60px;
}
.hb3 {
  width: 240px;
  height: 240px;
  background: rgba(244, 63, 94, 0.04);
  top: 50%;
  left: 42%;
}

.hero-content-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 2;
}

/* Hero badge pulse */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(67, 97, 238, 0.08);
  border: 1.5px solid rgba(67, 97, 238, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 22px;
}
.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--indigo);
  animation: pulseAnim 2s ease-in-out infinite;
}
@keyframes pulseAnim {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.5);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(67, 97, 238, 0);
  }
}

/* Hero title underline accent */
.hero-accent {
  position: relative;
  display: inline-block;
}
.hero-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--g-warm);
  animation: lineGrow 1.2s 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes lineGrow {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
  }
}

/* Hero stat pills */
.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.stat-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sp-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-num {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.sp-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* Hero right card */
.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g-brand);
}
.hc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 18px;
}
.hc-badge::before {
  content: "";
  width: 16px;
  height: 1.5px;
  background: var(--indigo);
  border-radius: 1px;
}

/* Feature items in hero card */
.hc-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.28s ease;
}
.hc-feat:hover {
  background: var(--indigo-l);
  border-color: rgba(67, 97, 238, 0.2);
  transform: translateY(-2px);
}
.hc-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hc-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.hc-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* Float mini cards */
.hero-float {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
}
.hero-float-1 {
  animation: flt1 4s ease-in-out infinite;
}
.hero-float-2 {
  animation: flt2 5s ease-in-out infinite;
}
@keyframes flt1 {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
@keyframes flt2 {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

/* Hero marquee */
.hero-marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(67, 97, 238, 0.08);
  background: rgba(67, 97, 238, 0.02);
  overflow: hidden;
  height: 46px;
}
.marquee-track {
  display: flex;
  animation: mq 28s linear infinite;
}
.mq-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 46px;
  flex-shrink: 0;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--body);
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.mq-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--indigo);
  opacity: 0.5;
  flex-shrink: 0;
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════
   ③ ABOUT — Asymmetric Split
══════════════════════════════════════ */
.about-img-stack {
  position: relative;
}
.ab-main {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef2ff, #dde6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.ab-overlay {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.ab-overlay-num {
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.ab-overlay-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.ab-sm {
  position: absolute;
  top: -14px;
  left: -14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Feature check list */
.feat-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.feat-row:hover {
  background: var(--indigo-l);
  border-color: rgba(67, 97, 238, 0.2);
}
.feat-dot {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--g-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   ④ WHY US — Light Bento Grid
══════════════════════════════════════ */
.bento-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .bento-wide {
    grid-column: span 2;
  }
  .bento-tall {
    grid-row: span 2;
  }
}

.bento-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--card-color, var(--indigo-l));
  top: -30px;
  right: -30px;
  opacity: 0.5;
  transition: transform 0.4s ease;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.bento-card:hover::before {
  transform: scale(1.6);
}
.bc-num {
  font-family: "Outfit", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  bottom: 16px;
  right: 20px;
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.07;
  transition: opacity 0.32s;
  pointer-events: none;
}
.bento-card:hover .bc-num {
  opacity: 0.2;
}
.bc-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.bc-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.bc-text {
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.76;
}
.bc-mini-stat {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.bc-mini-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* ══════════════════════════════════════
   ⑤ PROGRAMS — Tab Accordion
══════════════════════════════════════ */
#programs-section {
  background: var(--surface);
}

.prog-tab {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.28s,
    box-shadow 0.28s;
}
.prog-tab.active {
  border-color: rgba(67, 97, 238, 0.4);
  box-shadow:
    0 0 0 4px rgba(67, 97, 238, 0.07),
    var(--shadow-sm);
}
.prog-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  transition: background 0.25s;
}
.prog-tab.active .prog-head {
  background: var(--indigo-l);
}
.prog-head:hover {
  background: var(--surface);
}
.prog-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.prog-tab.active .prog-icon-box {
  transform: scale(1.1);
}
.prog-name {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  flex: 1;
}
.prog-age {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}
.prog-arrow {
  color: var(--muted);
  font-size: 0.8rem;
  transition:
    transform 0.3s,
    color 0.3s;
}
.prog-tab.active .prog-arrow {
  transform: rotate(90deg);
  color: var(--indigo);
}
.prog-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.prog-tab.active .prog-panel {
  max-height: 280px;
}
.prog-inner {
  padding: 0 20px 20px;
}
.prog-inner p {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 12px;
}
.prog-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--indigo-l);
  color: var(--indigo);
  border: 1px solid rgba(67, 97, 238, 0.2);
}

/* Prog visual right */
.prog-visual {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.5rem);

  position: sticky;
  top: 100px;
}
.pv-top-bar {
  height: 3px;
  background: var(--g-brand);
  border-radius: 2px;
  margin-bottom: 24px;
}
.pv-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  transition: all 0.28s;
}
.pv-stat:hover {
  background: var(--indigo-l);
  border-color: rgba(67, 97, 238, 0.2);
  transform: translateY(-2px);
}
.pv-stat-num {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}
.pv-stat-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════
   ⑥ STATS — Gradient border row
══════════════════════════════════════ */
#stats-section {
  background: var(--g-brand);
  position: relative;
  overflow: hidden;
}
#stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}
.stat-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s;
}
.stat-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
  transition: width 0.35s ease;
}
.stat-box:hover::after {
  width: 60%;
}
.sb-icon-wrap {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.sb-num {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.sb-lbl {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: center;
  height: 60px;
  display: none;
}
@media (min-width: 768px) {
  .stat-divider {
    display: block;
  }
}

/* ══════════════════════════════════════
   ⑦ GALLERY — Light Masonry
══════════════════════════════════════ */
.gal-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gal-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gal-cell {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.gal-cell:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.gal-cell.g-tall {
  grid-row: span 2;
  min-height: 0;
}
.gal-cell.g-wide {
  grid-column: span 2;
}
.gal-emoji {
  font-size: 3rem;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.gal-cell:hover .gal-emoji {
  transform: scale(1.15);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 40, 0.65),
    rgba(10, 15, 40, 0.15) 55%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: inherit;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gal-cell:hover .gal-overlay {
  opacity: 1;
}
.gal-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  display: block;
}
.gal-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-top: 2px;
}
.gal-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transform: scale(0);
  transition: transform 0.3s;
}
.gal-cell:hover .gal-zoom {
  transform: scale(1);
}

/* ══════════════════════════════════════
   ⑧ TEACHERS
══════════════════════════════════════ */
.tc-scroll-outer {
  position: relative;
  overflow: hidden;
}
.tc-scroll-outer::before,
.tc-scroll-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.tc-scroll-outer::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}
.tc-scroll-outer::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface), transparent);
}

.tc-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 16px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.tc-track::-webkit-scrollbar {
  display: none;
}

.tc-card {
  flex: 0 0 clamp(220px, 26vw, 264px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.tc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.tc-photo {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tc-avatar-icon {
  font-size: 5rem;
  transition: transform 0.4s ease;
}
.tc-card:hover .tc-avatar-icon {
  transform: scale(1.1);
}
.tc-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 40, 0.8) 0%,
    rgba(10, 15, 40, 0.2) 60%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.tc-card:hover .tc-hover {
  opacity: 1;
}
.tc-socs {
  display: flex;
  gap: 6px;
}
.tc-soc {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  transition: all 0.2s;
}
.tc-soc:hover {
  background: var(--indigo);
  border-color: var(--indigo);
}
.tc-info {
  padding: 16px 18px 20px;
}
.tc-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
}
.tc-role {
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tc-chip {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--body);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ══════════════════════════════════════
   ⑨ TESTIMONIALS
══════════════════════════════════════ */
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  font-family: "Outfit", sans-serif;
  font-size: 7rem;
  font-weight: 800;
  position: absolute;
  top: -10px;
  right: 16px;
  line-height: 1;
  color: rgba(67, 97, 238, 0.07);
  pointer-events: none;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.9rem;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.82;
  margin-bottom: 22px;
}
.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}
.testi-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}
.testi-meta {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Swiper overrides (light) */
.swiper-button-next,
.swiper-button-prev {
  width: 42px !important;
  height: 42px !important;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 50% !important;
  color: var(--indigo) !important;
  box-shadow: var(--shadow-md) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0.85rem !important;
  font-weight: 800 !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--indigo) !important;
  color: #fff !important;
  border-color: var(--indigo) !important;
}
.swiper-pagination-bullet {
  background: var(--border) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
}
.swiper-pagination-bullet-active {
  background: var(--indigo) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ══════════════════════════════════════
   ⑩ EVENTS
══════════════════════════════════════ */
.ev-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.ev-track::-webkit-scrollbar {
  display: none;
}
.ev-card {
  flex: 0 0 clamp(260px, 30vw, 308px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.32s ease;
}
.ev-card:hover {
  transform: translateY(-6px);

  border-color: transparent;
}
.ev-color-bar {
  height: 4px;
}
.ev-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 18px 0;
}
.ev-date {
  border-radius: 14px;
  padding: 8px 14px;
  text-align: center;
  min-width: 54px;
}
.ev-day {
  font-family: "Outfit", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.ev-mon {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.ev-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.ev-body {
  padding: 14px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ev-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 7px;
}
.ev-desc {
  font-size: 0.84rem;
  color: var(--body);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 12px;
}
.ev-foot {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   ⑪ FAQ
══════════════════════════════════════ */
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition:
    border-color 0.28s,
    box-shadow 0.28s;
}
.faq-item.open {
  border-color: rgba(67, 97, 238, 0.4);
  box-shadow:
    0 0 0 4px rgba(67, 97, 238, 0.06),
    var(--shadow-sm);
}
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 18px 22px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: none;
  border: none;
}
.faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-qic {
  color: var(--indigo);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.faq-tog {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body);
  font-size: 0.85rem;
  transition: all 0.28s;
  flex-shrink: 0;
}
.faq-item.open .faq-tog {
  background: var(--indigo);
  color: #fff;
  border-color: var(--indigo);
  transform: rotate(45deg);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-ans {
  max-height: 260px;
}
.faq-ans p {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.85;
}

/* ══════════════════════════════════════
   ⑫ ADMISSION FORM
══════════════════════════════════════ */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g-brand);
}
.form-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-sub {
  font-size: 0.84rem;
  color: var(--body);
  margin-bottom: 22px;
}
.form-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-label i {
  color: var(--indigo);
}
.form-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 12px 15px;
  background: #fff;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  transition:
    border-color 0.22s,
    box-shadow 0.22s;
}
.form-input:focus {
  border-color: rgba(67, 97, 238, 0.45);
  box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.08);
}
.form-input::placeholder {
  color: rgba(74, 85, 120, 0.35);
  font-weight: 400;
}
textarea.form-input {
  resize: vertical;
  min-height: 90px;
}
select.form-input option {
  background: #fff;
  color: var(--ink);
}

/* Admission steps */
.adm-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  position: relative;
}
.adm-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 38px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(67, 97, 238, 0.4),
    rgba(67, 97, 238, 0.05)
  );
}
.adm-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--g-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--shadow-brand);
}

/* ══════════════════════════════════════
   ⑬ CONTACT
══════════════════════════════════════ */
.ct-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}
.ct-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(67, 97, 238, 0.2);
}
.ct-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
}
.ct-card h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.ct-card p {
  font-size: 0.84rem;
  color: var(--body);
  line-height: 1.65;
}

.ct-form-wrap {
  max-width: 640px;
  margin-inline: auto;
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.ct-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g-teal);
}

/* ══════════════════════════════════════
   ⑭ FOOTER
══════════════════════════════════════ */
#footer {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.footer-top-bar {
  height: 3px;
  background: var(--g-full);
}
.footer-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
}
.footer-col-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-col-title i {
  color: rgba(67, 97, 238, 0.7);
}
.ft-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.2s;
}
.ft-link:hover {
  color: rgba(255, 255, 255, 0.8);
}
.ft-link i {
  font-size: 0.7rem;
  color: rgba(67, 97, 238, 0.5);
  transition: color 0.2s;
}
.ft-link:hover i {
  color: rgba(67, 97, 238, 0.9);
}
.ft-soc {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: all 0.22s;
}
.ft-soc:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
  transform: translateY(-2px);
}
.ft-ct-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 11px;
}
.ft-ct-row i {
  color: rgba(67, 97, 238, 0.7);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.ft-ct-row p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
#btt {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--g-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-brand);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
#btt.on {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#btt:hover {
  transform: translateY(-3px) !important;
}

/* ══════════════════════════════════════
   RESPONSIVE UTILITIES
══════════════════════════════════════ */
@media (max-width: 479px) {
  .hero-float-1,
  .hero-float-2 {
    display: none !important;
  }
  .gal-cell.g-wide {
    grid-column: span 1;
  }
  .gal-cell.g-tall {
    grid-row: span 1;
    min-height: 160px;
  }
  .about-img-stack {
    margin-bottom: 2rem;
  }
  .ab-overlay,
  .ab-sm {
    transform: none !important;
  }
}
@media (min-width: 480px) and (max-width: 639px) {
  .gal-cell.g-wide {
    grid-column: span 2;
  }
}
