/* ═══════════════════════════════════════════════════════════
   Lady Vailankanni — School Theme (Yellow · Black · White)
   ═══════════════════════════════════════════════════════════ */

:root {
  --yellow: #FFC107;
  --yellow-dark: #E5A800;
  --yellow-light: #FFF8E1;
  --yellow-pale: #FFFBF0;
  --black: #0D0D0D;
  --black-soft: #1A1A1A;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-alt: #FFFBF0;
  --text: #1A1A1A;
  --text-muted: #555555;
  --text-dim: #888888;
  --border: #E8E8E8;
  --border-yellow: rgba(255, 193, 7, 0.45);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-yellow: 0 4px 20px rgba(255, 193, 7, 0.35);
  --yellow-glow: rgba(255, 193, 7, 0.25);

  --font-heading: 'Sora', sans-serif;
  --font-sub: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 88px;
  --topbar-height: 36px;
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--black-soft); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ─── School Top Bar ──────────────────────────────────────── */
.school-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-height);
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  border-bottom: 3px solid var(--yellow);
}

.school-top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.school-top-bar a { color: var(--yellow); font-weight: 500; }
.school-top-bar a:hover { color: var(--white); }
.top-bar-divider { color: #444; }

.page-bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 193, 7, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 193, 7, 0.04) 0%, transparent 40%),
    var(--bg);
}

.particle-canvas { display: none; }
.mouse-glow { display: none; }
.aurora-bg { display: none; }

/* ─── Preloader ─────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }

.preloader-text {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.preloader-text::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--yellow);
  margin: 0.5rem auto 1.5rem;
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: var(--yellow);
  border-radius: 4px;
  animation: preload 1.5s ease forwards;
}

@keyframes preload { to { width: 100%; } }

.preloader-tagline {
  font-family: var(--font-sub);
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── Cards ─────────────────────────────────────────────── */
.glass-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.glass-card:hover {
  border-color: var(--border-yellow);
  box-shadow: var(--shadow-hover);
}

.glass-card:hover::before { transform: scaleX(1); }

/* ─── Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.site-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  display: block;
  line-height: 1.2;
}

.site-logo .logo-sub {
  font-family: var(--font-sub);
  font-size: 0.62rem;
  color: var(--yellow-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-list { display: flex; list-style: none; gap: 0.15rem; }

.nav-list a {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-list a:hover,
.nav-list .current-menu-item a {
  color: var(--black);
  background: var(--yellow-light);
}

.header-actions { display: flex; align-items: center; gap: 1rem; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.header-phone:hover { color: var(--black); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
}

/* ─── Buttons ─────────────────────────────────────────────── */
.lvgi-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-yellow);
  border: 2px solid var(--yellow);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--yellow);
  background: var(--yellow-light);
  color: var(--black);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-glow { display: none; }

/* ─── Hero ──────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--topbar-height));
  overflow: hidden;
  background: linear-gradient(180deg, var(--yellow-pale) 0%, var(--white) 60%);
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
}

.hero-three-canvas { width: 100%; height: 100%; }

.hero-light-rays {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255, 193, 7, 0.12) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.hero-hologram { display: none; }

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  background: var(--yellow);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.hero-title-line { display: block; }

.hero-title-accent {
  color: var(--yellow-dark);
  position: relative;
  display: inline-block;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(255, 193, 7, 0.35);
  z-index: -1;
}

.hero-subtitle {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.program-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
}

.program-tag:hover { border-color: var(--yellow); background: var(--yellow-light); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.btn-icon-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--black);
  border-radius: 50%;
  color: var(--yellow);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 3px solid var(--yellow);
  padding-top: 2rem;
}

.stat-card {
  padding: 1.25rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-suffix { color: var(--yellow-dark); }

.stat-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  margin: 0.5rem auto 0;
  animation: scroll-bounce 2s ease infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ─── Sections ──────────────────────────────────────────── */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  background: var(--white);
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  color: var(--black);
}

.section-subtitle {
  font-family: var(--font-sub);
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.8;
}

.section-line {
  width: 60px;
  height: 4px;
  background: var(--yellow);
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

.section-cta { text-align: center; margin-top: 3rem; }

/* ─── Page Hero ─────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-height) + var(--topbar-height) + 3rem) 0 3rem;
  position: relative;
  background: linear-gradient(180deg, var(--yellow-pale) 0%, var(--white) 100%);
  border-bottom: 4px solid var(--yellow);
}

.page-hero-bg { display: none; }
.page-hero-content { position: relative; text-align: center; }

.page-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
  color: var(--black);
}

.page-subtitle {
  font-family: var(--font-sub);
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--yellow-dark); }

/* ─── Grids ─────────────────────────────────────────────── */
.why-grid,
.facilities-grid,
.programs-grid,
.faculty-grid,
.career-grid,
.achievements-grid,
.values-grid,
.exam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.why-card,
.facility-card,
.program-card,
.academic-card,
.exam-card,
.value-card,
.achievement-card,
.career-card {
  padding: 2rem;
}

.why-card-icon,
.facility-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-light);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-sm);
  color: var(--black);
  margin-bottom: 1.25rem;
}

.why-card h3,
.facility-card h3,
.program-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.why-card p,
.facility-card p,
.program-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.why-card-glow,
.facility-card-glow,
.program-card-glow,
.academic-card-glow { display: none; }

.programs-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.program-card {
  display: block;
  color: var(--text);
  padding: 2rem;
}

.program-card:hover { color: var(--text); }

.program-card-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 1.25rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--yellow);
}

/* ─── Overview ──────────────────────────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.overview-features { margin: 2rem 0; }

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  color: var(--black);
}

.feature-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--black); }
.feature-item p { font-size: 0.85rem; color: var(--text-dim); margin: 0; }

.overview-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
}

.overview-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--yellow-light), var(--white));
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
}

.image-glow { display: none; }

.image-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.floating-card {
  position: absolute;
  padding: 1rem 1.25rem;
  text-align: center;
  background: var(--white) !important;
  border: 2px solid var(--yellow) !important;
}

.floating-card-1 { top: -1rem; right: -1rem; animation: float 6s ease-in-out infinite; }
.floating-card-2 { bottom: -1rem; left: -1rem; animation: float 6s ease-in-out infinite reverse; }

.fc-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
}

.fc-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── Timeline ──────────────────────────────────────────── */
.timeline-wrapper { overflow-x: auto; padding: 1.5rem 0; }

.timeline-track {
  display: flex;
  gap: 1.25rem;
  min-width: max-content;
  padding: 0.5rem;
}

.timeline-item { flex: 0 0 260px; }

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border: 3px solid var(--black);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.timeline-card { padding: 1.5rem; }

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-card h4 { margin-bottom: 0.5rem; color: var(--black); }
.timeline-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ─── Leadership ────────────────────────────────────────── */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.leadership-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--yellow-light), var(--white));
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  color: var(--text-muted);
  font-weight: 600;
}

.leadership-quote {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  border-left: 4px solid var(--yellow);
  padding-left: 1.5rem;
}

.leadership-author h3 { margin-bottom: 0.25rem; color: var(--black); }
.leadership-author span { color: var(--yellow-dark); font-size: 0.9rem; font-weight: 600; }

/* ─── Campus Tabs ───────────────────────────────────────── */
.campus-tab-nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.campus-tab-btn {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.campus-tab-btn.active,
.campus-tab-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.campus-tab-content { display: none; }
.campus-tab-content.active { display: block; }

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.activity-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  font-family: var(--font-sub);
  font-weight: 600;
  color: var(--text);
}

.activity-icon { color: var(--yellow-dark); font-size: 1.1rem; }

/* ─── Sports ────────────────────────────────────────────── */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.sport-card {
  text-align: center;
  padding: 1.75rem 1rem;
}

.sport-emoji { font-size: 2.25rem; display: block; margin-bottom: 0.75rem; }
.sport-card h4 { font-size: 0.9rem; color: var(--black); }

/* ─── Marquee ───────────────────────────────────────────── */
.alumni-marquee { overflow: hidden; margin-bottom: 2rem; }

.marquee-track {
  display: flex;
  gap: 1rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sub);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--yellow-light);
  border: 1px solid var(--border-yellow);
  color: var(--black);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card { padding: 2rem; }

.testimonial-stars { margin-bottom: 1rem; display: flex; gap: 2px; }

.testimonial-card blockquote p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--black);
  font-size: 0.9rem;
}

.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--black); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-dim); }

/* ─── News & Blog ───────────────────────────────────────── */
.news-grid,
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.news-card,
.blog-card { overflow: hidden; }

.news-card-image,
.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--yellow-light);
}

.news-card-image img,
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.news-card:hover img,
.blog-card:hover img { transform: scale(1.04); }

.news-card-content,
.blog-card-content { padding: 1.5rem; }

.news-card-content time,
.blog-card-content time {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.news-card h3,
.blog-card h3 { font-size: 1.05rem; margin: 0.5rem 0; }

.news-card h3 a,
.blog-card h3 a { color: var(--black); }
.news-card h3 a:hover,
.blog-card h3 a:hover { color: var(--yellow-dark); }

.news-card p,
.blog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

.blog-category {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--yellow-light);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  display: inline-block;
}

.read-more { font-size: 0.85rem; font-weight: 700; color: var(--black); border-bottom: 2px solid var(--yellow); }

/* ─── Admissions ────────────────────────────────────────── */
.admissions-banner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--black) !important;
  border: none !important;
  color: var(--white);
}

.admissions-banner::before { background: var(--yellow) !important; transform: scaleX(1) !important; height: 5px; }

.admissions-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  background: var(--yellow);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.admissions-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  color: var(--white);
}

.admissions-banner p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

.admissions-steps { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.admissions-steps .step {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}

.admissions-steps .step span {
  color: var(--yellow);
  font-weight: 800;
  margin-right: 0.25rem;
}

.admissions-actions { display: flex; flex-direction: column; gap: 1rem; }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 0.75rem; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--black);
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon { transition: transform var(--transition); flex-shrink: 0; color: var(--yellow-dark); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active { border-color: var(--yellow) !important; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

/* ─── Forms ─────────────────────────────────────────────── */
.lvgi-form { padding: 0.5rem 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; position: relative; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-glow);
}

.floating-label label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 0.9rem;
  pointer-events: none;
  transition: all 0.2s;
  background: transparent;
}

.floating-label textarea ~ label { top: 1rem; transform: none; }

.floating-label input:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label select:focus ~ label,
.floating-label select:valid ~ label,
.floating-label textarea:focus ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label {
  top: -0.55rem;
  left: 0.75rem;
  font-size: 0.7rem;
  color: var(--yellow-dark);
  background: var(--white);
  padding: 0 0.35rem;
  font-weight: 600;
}

.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-checkbox input { width: auto; margin-top: 0.25rem; accent-color: var(--yellow); }
.form-checkbox label { font-size: 0.85rem; color: var(--text-muted); position: static; transform: none; }

.admission-form-wrapper { padding: 2.5rem; max-width: 700px; margin: 0 auto; }

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.progress-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  color: var(--text-muted);
}

.progress-step.active .progress-dot,
.progress-step.completed .progress-dot {
  background: var(--yellow);
  border-color: var(--black);
  color: var(--black);
}

.progress-label { font-size: 0.7rem; color: var(--text-dim); font-weight: 600; }
.progress-step.active .progress-label { color: var(--black); }

.progress-line {
  width: 50px;
  height: 2px;
  background: var(--border);
  margin: 0 0.5rem;
  margin-bottom: 1.5rem;
}

.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { margin-bottom: 1.5rem; font-size: 1.25rem; color: var(--black); }

.form-nav { display: flex; gap: 1rem; margin-top: 1.5rem; }
.form-success { text-align: center; padding: 3rem; }

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
}

/* ─── Contact ───────────────────────────────────────────── */
.contact-grid,
.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1rem; }

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-info-card svg { color: var(--yellow-dark); flex-shrink: 0; margin-top: 0.25rem; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--black); }
.contact-info-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.contact-info-card a { color: var(--text-muted); }
.contact-info-card a:hover { color: var(--black); }

.contact-form-wrap { padding: 2.5rem; }
.contact-form-wrap h2 { margin-bottom: 1.5rem; font-size: 1.5rem; color: var(--black); }

.contact-info-cards { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

/* ─── CTA Strip ─────────────────────────────────────────── */
.cta-strip {
  padding: 3rem 0;
  background: var(--yellow-pale);
  border-top: 4px solid var(--yellow);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: var(--white) !important;
}

.cta-strip h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 0.5rem; color: var(--black); }
.cta-strip p { color: var(--text-muted); font-size: 0.9rem; }
.cta-strip-actions { display: flex; gap: 1rem; flex-shrink: 0; }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: 5px solid var(--yellow);
}

.footer-top { padding: 4rem 0 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand .logo-main {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  display: block;
  color: var(--white);
}

.footer-brand .logo-sub {
  font-size: 0.62rem;
  color: var(--yellow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
}

.footer-social { display: flex; gap: 0.75rem; }

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: var(--white);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.footer-links a:hover { color: var(--yellow); }

.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.contact-list svg { color: var(--yellow); flex-shrink: 0; margin-top: 0.2rem; }
.contact-list a { color: rgba(255,255,255,0.65); }
.contact-list a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ─── WhatsApp & Back to Top ────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); color: white; }

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 5.5rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 6px;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--black); color: var(--yellow); }

/* ─── Gallery ───────────────────────────────────────────── */
.gallery-masonry { columns: 3; column-gap: 1rem; }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--yellow-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius-md); border: 3px solid var(--yellow); }
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--yellow);
  border: none;
  color: var(--black);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

/* ─── Reveal ────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ─── Mobile Menu ───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding-top: calc(var(--header-height) + var(--topbar-height));
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-nav-list { list-style: none; text-align: center; }
.mobile-nav-list li { margin-bottom: 0.25rem; }

.mobile-nav-list a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.6rem 1rem;
  display: block;
}

.mobile-nav-list a:hover { color: var(--yellow-dark); background: var(--yellow-light); }

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

/* ─── Misc Components ───────────────────────────────────── */
.subjects-grid,
.features-grid { display: flex; flex-wrap: wrap; gap: 0.65rem; margin: 1.5rem 0; }

.subject-tag,
.feature-badge,
.career-tag,
.level-tag,
.combo-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  background: var(--yellow-light);
  border: 1px solid var(--border-yellow);
  color: var(--black);
}

.stream-grid,
.degree-grid,
.levels-grid,
.vm-grid,
.content-grid,
.board-grid,
.sitemap-grid,
.process-steps,
.documents-grid,
.accreditations-grid,
.alumni-careers-grid,
.career-openings { display: grid; gap: 1.25rem; }

.stream-grid,
.degree-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.levels-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.vm-grid,
.content-grid { grid-template-columns: 1fr 1fr; }
.sitemap-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.process-steps { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.documents-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.accreditations-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.alumni-careers-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

.stream-card,
.degree-card,
.level-card,
.vm-card,
.board-card,
.sitemap-group,
.process-step,
.document-item,
.accreditation-badge,
.alumni-career-card,
.job-card { padding: 1.75rem; }

.process-step { text-align: center; }
.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow-dark);
  display: block;
  margin-bottom: 0.75rem;
}

.document-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.accreditation-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--yellow-light);
  border-color: var(--yellow);
}

.acc-check { color: var(--black); font-weight: 800; }

.mission-list { list-style: none; margin-top: 1rem; }
.mission-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.mission-list li strong { color: var(--black); }

.vm-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--black);
}

.seo-content { padding: 2.5rem; }
.seo-content h2, .seo-content h3 { margin: 1.5rem 0 0.75rem; color: var(--black); }
.seo-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

.blog-archive-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
}

.sidebar-widget { padding: 1.5rem; margin-bottom: 1.25rem; }
.sidebar-widget-title { font-size: 1rem; margin-bottom: 1rem; color: var(--black); border-bottom: 3px solid var(--yellow); padding-bottom: 0.5rem; display: inline-block; }

.sidebar-search {
  display: flex;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.sidebar-search input {
  flex: 1;
  padding: 0.75rem;
  background: var(--white);
  border: none;
  color: var(--text);
  outline: none;
}

.sidebar-search button {
  padding: 0.75rem 1rem;
  background: var(--yellow);
  border: none;
  color: var(--black);
  cursor: pointer;
  font-weight: 700;
}

.sidebar-categories { list-style: none; }
.sidebar-categories li { margin-bottom: 0.4rem; }
.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-categories a:hover { color: var(--black); }
.cat-count { background: var(--yellow-light); padding: 0.1rem 0.5rem; border-radius: 3px; font-size: 0.7rem; font-weight: 700; }

.sidebar-cta { text-align: center; background: var(--yellow-light) !important; border-color: var(--yellow) !important; }

.error-404 { min-height: 60vh; display: flex; align-items: center; }
.error-content { text-align: center; padding: 4rem; max-width: 600px; margin: 0 auto; }

.error-code {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--black);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-actions { display: flex; gap: 1rem; justify-content: center; margin: 2rem 0; flex-wrap: wrap; }
.error-links ul { list-style: none; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

.map-wrapper { overflow: hidden; border-radius: var(--radius-md); border: 2px solid var(--border); }

.tour-player { aspect-ratio: 16/9; overflow: hidden; }

.tour-placeholder {
  width: 100%;
  height: 100%;
  background: var(--yellow-light);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.tour-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--black);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.tour-play-btn:hover { transform: scale(1.08); box-shadow: var(--shadow-yellow); }

.single-layout { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; }
.single-content { padding: 2.5rem; }
.entry-content { color: var(--text-muted); line-height: 1.9; }
.entry-content h2, .entry-content h3 { color: var(--black); margin: 1.5rem 0 0.75rem; }
.page-content { padding: 2.5rem; }

.content-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pagination { margin-top: 2rem; text-align: center; }
.pagination .nav-links { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-weight: 600;
}
.pagination a:hover, .pagination .current {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.faculty-photo-placeholder {
  width: 80px;
  height: 80px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .overview-grid,
  .leadership-grid,
  .contact-grid,
  .contact-cta-grid,
  .admissions-banner,
  .vm-grid,
  .content-grid,
  .footer-grid,
  .single-layout,
  .blog-archive-layout { grid-template-columns: 1fr; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  :root { --header-height: 72px; --topbar-height: 0px; }

  .school-top-bar { display: none; }
  .site-header { top: 0; }

  .main-nav,
  .header-phone,
  .header-actions .lvgi-btn { display: none; }
  .mobile-toggle { display: block; }

  .hero-cta { flex-direction: column; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { flex-direction: column; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .gallery-masonry { columns: 1; }
  .whatsapp-float { bottom: 1rem; right: 1rem; }
  .back-to-top { right: 4.5rem; bottom: 1rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
