:root {
  --background: oklch(0.98 0.005 85);
  --foreground: oklch(0.25 0.025 35);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.25 0.025 35);
  --primary: oklch(0.45 0.12 45);
  --primary-foreground: oklch(0.98 0.005 85);
  --secondary: oklch(0.85 0.08 145);
  --secondary-foreground: oklch(0.25 0.025 35);
  --muted: oklch(0.92 0.03 80);
  --muted-foreground: oklch(0.50 0.04 45);
  --accent: oklch(0.72 0.14 35);
  --accent-foreground: oklch(0.98 0.005 85);
  --border: oklch(0.88 0.04 75);
  --banner-overlay: rgba(0, 0, 0, 0.6);
  --footer-text: oklch(0.98 0.005 85);
  --radius: 0.5rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  width: 100%;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: bold;
}

img, svg, video, canvas, iframe { max-width: 100%; display: block; }
section { overflow-x: clip; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }
blockquote { quotes: none; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

main { min-height: 100vh; overflow-x: clip; }
.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
.navbar-brand { display: flex; align-items: center; gap: 0.5rem; }
.navbar-brand img { width: 2.5rem; height: 2.5rem; border-radius: 9999px; object-fit: cover; }
.navbar-brand span { font-weight: bold; font-size: 1.125rem; color: var(--primary); }
.navbar-links { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .navbar-links { display: flex; } }
.navbar-links a {
  font-size: 0.875rem; font-weight: 600;
  color: color-mix(in oklab, var(--primary) 85%, transparent);
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--primary); }
.navbar-toggle {
  display: inline-flex; padding: 0.5rem;
}
@media (min-width: 768px) { .navbar-toggle { display: none; } }
.navbar-toggle svg { width: 24px; height: 24px; }
.navbar-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
}
.navbar-mobile.open { display: block; }
@media (min-width: 768px) { .navbar-mobile { display: none !important; } }
.navbar-mobile-list { padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.navbar-mobile-list a {
  display: block; padding: 0.5rem 0;
  font-size: 0.875rem; font-weight: 600;
  color: color-mix(in oklab, var(--primary) 85%, transparent);
}
.navbar-mobile-list a:hover { color: var(--primary); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  z-index: 0;
}
.hero-overlay-dark { position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.5); }
.hero-overlay-gradient {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,0.24), transparent 28%),
    linear-gradient(90deg, rgba(69,42,24,0.88), rgba(35,28,22,0.56) 48%, rgba(0,0,0,0.74));
}
.hero-content {
  position: relative; z-index: 10;
  display: flex; align-items: center;
  min-height: calc(100vh - 4rem);
  padding: 0 1rem;
}
.hero-inner { width: 100%; max-width: 80rem; margin: 0 auto; }
.hero-text { max-width: 64rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.hero-badge svg { width: 1rem; height: 1rem; color: var(--accent); }
.hero-badge span { font-size: 0.875rem; font-weight: 600; }
.hero h1 {
  max-width: 64rem;
  font-size: 2.25rem; line-height: 1.05;
  color: #fff;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }
.hero h1 .accent { display: block; color: var(--accent); }
.hero p {
  margin-top: 1.75rem;
  max-width: 42rem;
  font-size: 1rem; line-height: 1.75rem;
  color: rgba(255,255,255,0.86);
}
@media (min-width: 640px) { .hero p { font-size: 1.125rem; } }
@media (min-width: 768px) { .hero p { font-size: 1.5rem; line-height: 2.25rem; } }
.hero-ctas { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: transform 0.2s, background 0.2s;
}
.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.25);
}
.btn-accent:hover { transform: translateY(-2px); }
.btn-glass {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,0.2); }
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  animation: bounce 1s infinite;
}
.scroll-indicator svg { width: 1.5rem; height: 1.5rem; color: rgba(255,255,255,0.8); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateX(-50%) translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

/* ===== GENERIC SECTION ===== */
.section { padding: 5rem 0; }
.section-secondary { background: var(--secondary); }
.section-muted { background: var(--muted); }
.section-primary { background: var(--primary); color: var(--primary-foreground); }
.section-foreground { background: var(--foreground); color: var(--footer-text); }
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { font-size: 2.25rem; margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--muted-foreground); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.eyebrow svg { width: 1rem; height: 1rem; }

/* ===== GRIDS ===== */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-leaders { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-leaders { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-leaders { grid-template-columns: repeat(3, 1fr); } }
.grid-women { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-women { grid-template-columns: repeat(2, 1fr); } }
.grid-vision { grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-vision { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-vision { grid-template-columns: repeat(3, 1fr); } }
.grid-videos { grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-videos { grid-template-columns: repeat(2, 1fr); } }

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.card-pad { padding: 2rem; }
.card-pad-sm { padding: 1.5rem; }
.card-center { text-align: center; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.card p { font-size: 0.875rem; color: var(--muted-foreground); }
.card-icon { margin-bottom: 1rem; display: flex; justify-content: center; }
.card-icon svg { width: 2rem; height: 2rem; color: var(--primary); }

/* ===== PROJECT ABSTRACT ===== */
#proyecto { background: var(--secondary); }

/* ===== TERRITORIAL CONTEXT ===== */
.territorio-text p { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.territorio-text h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
.territorio-text .lead { font-size: 1.125rem; }
.landmarks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.landmark {
  background: var(--secondary);
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
  font-weight: 500; font-size: 0.875rem;
}
.territorio-image {
  position: relative;
}
.territorio-image img {
  width: 100%; height: 360px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
@media (min-width: 640px) { .territorio-image img { height: 500px; } }
.territorio-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
@media (min-width: 640px) {
  .territorio-badge { bottom: -1.5rem; left: -1.5rem; padding: 1.5rem; }
}
.territorio-badge .num { font-size: 2.25rem; font-weight: bold; }
.territorio-badge .lbl { font-size: 0.875rem; }

/* ===== LEGEND ===== */
.legend-image img {
  width: 100%; height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.legend-quote {
  font-size: 1.5rem; font-weight: 500;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.legend-author { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.bullet-list { display: flex; flex-direction: column; gap: 1rem; }
.bullet-list li { display: flex; align-items: center; gap: 0.75rem; }
.bullet-list .dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--primary); flex-shrink: 0; }

/* ===== PRODUCTIVE MEMORY ===== */
.memory-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.memory-card img {
  width: 100%; height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.memory-card:hover img { transform: scale(1.05); }
.memory-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--banner-overlay), transparent 60%);
  pointer-events: none;
}
.memory-card-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: var(--background);
}
.memory-card-text h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.memory-card-text p { font-size: 0.875rem; opacity: 0.9; }

/* ===== TIMELINE ===== */
.timeline { position: relative; }
.timeline-line {
  display: none;
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: var(--primary);
  opacity: 0.2;
}
@media (min-width: 768px) { .timeline-line { display: block; } }
.timeline-items { display: flex; flex-direction: column; gap: 3rem; }
.timeline-item {
  position: relative;
  display: flex; flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .timeline-item { flex-direction: row; align-items: center; gap: 2rem; }
  .timeline-item.reverse { flex-direction: row-reverse; }
}
.timeline-card { flex: 1; }
.timeline-card .card-inner {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.timeline-year {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500;
  margin-bottom: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
}
.timeline-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.timeline-card p { color: var(--muted-foreground); }
.timeline-dot {
  display: none;
}
@media (min-width: 768px) {
  .timeline-dot {
    display: flex; align-items: center; justify-content: center;
  }
  .timeline-dot::before {
    content: "";
    width: 1rem; height: 1rem;
    border-radius: 9999px;
    background: var(--primary);
    border: 4px solid var(--background);
  }
}
.timeline-image { flex: 1; }
.timeline-image img {
  width: 100%; height: 12rem;
  object-fit: cover;
  border-radius: 1rem;
}

/* ===== QUOTE SLIDER ===== */
.quote-slider {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.quote-icon { margin: 0 auto 1.5rem; opacity: 0.8; width: 3rem; height: 3rem; }
.quote-text {
  font-size: 1.5rem; font-weight: 500;
  font-style: italic;
  margin-bottom: 2rem;
  min-height: 7rem;
  transition: opacity 0.5s;
}
@media (min-width: 768px) { .quote-text { font-size: 2.25rem; } }
.quote-author {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.quote-author img {
  width: 4rem; height: 4rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}
.quote-author-text { text-align: left; }
.quote-author-text .name { font-weight: bold; }
.quote-author-text .role { font-size: 0.875rem; opacity: 0.8; }
.quote-dots {
  display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem;
}
.quote-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 9999px;
  background: var(--primary-foreground);
  opacity: 0.3;
  transition: width 0.3s, opacity 0.3s;
}
.quote-dot.active { width: 2rem; opacity: 1; }

/* ===== LEADERSHIP GRID ===== */
.leader-card {
  cursor: pointer;
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.leader-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.leader-card-img {
  position: relative;
  height: 18rem;
  overflow: hidden;
}
.leader-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.leader-card:hover .leader-card-img img { transform: scale(1.05); }
.leader-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--banner-overlay), transparent 50%);
}
.leader-card-img-text {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  color: var(--background);
}
.leader-card-img-text h3 { font-size: 1.25rem; }
.leader-card-img-text p { font-size: 0.875rem; opacity: 0.9; }
.leader-card-body { padding: 1rem; }
.leader-card-body p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.leader-card-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
  transition: background 0.2s;
}
.leader-card:hover .leader-card-cta { background: color-mix(in oklab, var(--primary) 18%, transparent); }

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 100;
  align-items: center; justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal.open { display: flex; }
.modal-content {
  background: var(--background);
  border-radius: 1rem;
  max-width: 64rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-img-wrap { position: relative; }
.modal-img-wrap img {
  width: 100%; height: 16rem;
  object-fit: cover;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.5rem;
  border-radius: 9999px;
  background: rgba(0,0,0,0.5);
  color: var(--background);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.7); }
.modal-body { padding: 2rem; }
.modal-body h2 { font-size: 1.875rem; margin-bottom: 0.5rem; }
.modal-role { color: var(--primary); margin-bottom: 0.25rem; }
.modal-location { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.modal-quote {
  border-left: 4px solid var(--primary);
  padding: 0.5rem 0 0.5rem 1rem;
  margin-bottom: 2rem;
  font-style: italic;
  font-size: 1.125rem;
}
.modal-section { margin-bottom: 2rem; }
.modal-section h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.modal-section .body {
  line-height: 1.625;
  color: var(--muted-foreground);
  white-space: pre-line;
}
.achievements { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .achievements { grid-template-columns: repeat(2, 1fr); } }
.achievement {
  background: var(--secondary);
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.achievement svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.achievement span { font-size: 0.875rem; }
body.modal-open { overflow: hidden; }

/* ===== SAFETY ===== */
.safety-feature {
  background: var(--secondary);
  border-radius: 1rem;
  padding: 2rem;
}
.safety-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 768px) { .safety-grid { grid-template-columns: 1fr 1fr; } }
.safety-grid img {
  width: 100%; height: 16rem;
  object-fit: cover;
  border-radius: 0.75rem;
}
.safety-grid h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.safety-grid p { margin-bottom: 1rem; color: var(--muted-foreground); }
.safety-stats { display: flex; gap: 1rem; }
.safety-stat { text-align: center; }
.safety-stat .num { font-size: 1.875rem; font-weight: bold; color: var(--primary); }
.safety-stat .lbl { font-size: 0.875rem; color: var(--muted-foreground); }
.safety-card-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }

/* ===== WOMEN LEADERSHIP ===== */
.women-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.women-card img { width: 100%; height: 16rem; object-fit: cover; }
.women-card-body { padding: 1.5rem; }
.women-card-body h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.women-card-body .role { color: var(--primary); margin-bottom: 1rem; }
.women-card-body .story { color: var(--muted-foreground); }

/* ===== EVENTS GALLERY (masonry) ===== */
.events-masonry {
  column-count: 1;
  column-gap: 1rem;
}
@media (min-width: 640px) { .events-masonry { column-count: 2; } }
@media (min-width: 1024px) { .events-masonry { column-count: 3; } }
.events-masonry-item {
  margin-bottom: 1rem;
  break-inside: avoid;
}
.events-masonry-item img {
  width: 100%;
  border-radius: 0.75rem;
  transition: transform 0.3s;
  cursor: pointer;
}
.events-masonry-item img:hover { transform: scale(1.02); }

/* ===== VIDEO SECTION ===== */
.video-section-header { max-width: 48rem; margin-bottom: 3rem; }
.video-section-header h2 { font-size: 2.25rem; margin-bottom: 1rem; }
.video-section-header p { font-size: 1.125rem; line-height: 2rem; color: var(--muted-foreground); }
.video-card {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-card-body {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.25rem;
}
.video-icon {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  flex-shrink: 0;
}
.video-icon svg { width: 1.25rem; height: 1.25rem; }
.video-card-body h3 { font-size: 1.25rem; font-weight: 600; }

/* ===== UNIVERSITY ===== */
.univ-text h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
.univ-text p { font-size: 1.125rem; margin-bottom: 1.5rem; color: var(--muted-foreground); }
.faculties { display: flex; flex-direction: column; gap: 1rem; }
.faculty {
  background: var(--secondary);
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.faculty .icon { font-size: 1.5rem; }
.faculty .name { font-weight: 500; }
.univ-image img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* ===== VISION ===== */
.vision-card .card-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.vision-card svg { width: 1.5rem; height: 1.5rem; color: var(--primary); margin-bottom: 1rem; }
.vision-card blockquote { font-size: 1.125rem; font-style: italic; margin-bottom: 1rem; }
.vision-card .author { font-weight: bold; }
.vision-card .role { font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== FOOTER ===== */
.footer {
  background: var(--foreground);
  color: var(--footer-text);
  padding: 4rem 0;
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand img { width: 2.5rem; height: 2.5rem; border-radius: 9999px; object-fit: cover; }
.footer-brand span { font-weight: bold; font-size: 1.125rem; }
.footer-col p { font-size: 0.875rem; opacity: 0.8; }
.footer-col h4 { font-weight: bold; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; opacity: 0.8; }
.footer-col li a { transition: opacity 0.2s; }
.footer-col li a:hover { opacity: 1; }
.footer-col li.contact-row { display: flex; align-items: center; gap: 0.5rem; }
.footer-col li.contact-row svg { width: 1rem; height: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.8;
}
.footer-bottom p + p { margin-top: 0.5rem; }

/* ===== AOS (Animate On Scroll) replacement ===== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-in"]    { transform: none; }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
@media (max-width: 767.98px) {
  [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
