/* ==========================================================================
   TRIMURTI ARTS, COMMERCE & SCIENCE COLLEGE — REDESIGN
   Stylesheet organized by: Tokens → Base → Utilities → Components → Sections → Responsive
   ========================================================================== */

/* ---------------------------------- 1. DESIGN TOKENS ---------------------------------- */
:root {
  /* Color palette — warm, grounded, Maharashtra-coded */
  --cream:        #FAF6ED;   /* base background */
  --sand:         #EFE7D8;   /* alternating section bg */
  --ink:          #1F3A34;   /* deep pine-teal — primary */
  --ink-soft:     #2C4A43;
  --ink-tint:     #EAF0EE;
  --gold:         #D98E2B;   /* marigold accent */
  --gold-soft:    #F4DDB3;
  --kumkum:       #A63D2F;   /* secondary accent, sparing use */
  --paper:        #FFFFFF;
  --line:         rgba(31, 58, 52, 0.12);
  --text-body:    #3B4B47;
  --text-muted:   #6B7A76;

  /* Type */
  --font-display: 'Fraunces', serif;
  --font-body:    'Manrope', sans-serif;

  /* Type scale */
  --fs-hero:      clamp(2.6rem, 5.2vw, 4.6rem);
  --fs-h1:        clamp(2.1rem, 3.6vw, 3rem);
  --fs-h2:        clamp(1.6rem, 2.6vw, 2.2rem);
  --fs-h3:        clamp(1.15rem, 1.6vw, 1.4rem);
  --fs-eyebrow:   0.78rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Shape */
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-soft: 0 20px 50px -20px rgba(31, 58, 52, 0.25);
  --shadow-tight: 0 8px 24px -10px rgba(31, 58, 52, 0.2);

  --container: 1200px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------- 2. RESET / BASE ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.15; font-weight: 600; }
p { margin: 0; }
input, textarea, select { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section { position: relative; }

.section-pad { padding-block: var(--space-2xl); }
.bg-sand { background: var(--sand); }
.bg-ink { background: var(--ink); color: #DCE7E3; }
.bg-ink h2, .bg-ink h3 { color: var(--paper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kumkum);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: var(--space-lg); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-muted); margin-top: var(--space-sm); font-size: 1.05rem; }
.bg-ink .section-head p { color: #B7C9C4; }

/* ---------------------------------- 3. BUTTONS ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-tight);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); background: var(--ink-soft); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(217, 142, 43, 0.6);
}
.btn-gold:hover { transform: translateY(-3px); background: #C67F1F; }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.bg-ink .btn-outline { border-color: var(--gold-soft); color: var(--paper); }
.bg-ink .btn-outline:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* ---------------------------------- 4. TRIAD SIGNATURE MARK ---------------------------------- */
/* The recurring three-arc motif representing "Trimurti" (three forms) */
.triad-mark { width: 46px; height: 46px; display: block; }
.triad-divider {
  display: flex;
  justify-content: center;
  margin-block: var(--space-lg);
  opacity: 0.85;
}
.triad-divider svg { width: 64px; height: 64px; }

/* ---------------------------------- 5. NAVBAR ---------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 1.1rem;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(250, 246, 237, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 0.65rem;
  box-shadow: 0 4px 24px -8px rgba(31,58,52,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.brand-text span { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.5rem 0;
  position: relative;
}
.nav-links > li > a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }
.nav-links > li > a.active { color: var(--kumkum); }

.has-dropdown > a::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.dropdown li a:hover { background: var(--ink-tint); color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none;
  background: none; border: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span::after { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------------------------------- 6. HERO ---------------------------------- */
.hero {
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: var(--space-2xl);
  position: relative;
  background:
    radial-gradient(ellipse at top right, var(--gold-soft) 0%, transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-copy .eyebrow { color: var(--kumkum); }
.hero-copy h1 { font-size: var(--fs-hero); margin-bottom: var(--space-md); }
.hero-copy h1 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.hero-lede { font-size: 1.15rem; color: var(--text-body); max-width: 46ch; margin-bottom: var(--space-lg); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: var(--space-lg); }
.hero-stats { display: flex; gap: var(--space-lg); flex-wrap: wrap; }
.hero-stats div strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); display: block; }
.hero-stats div span { font-size: 0.82rem; color: var(--text-muted); }

.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 260px;
}
.hero-badge svg { width: 34px; height: 34px; flex-shrink: 0; }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.hero-badge span { font-size: 0.78rem; color: #B7C9C4; }

.hero-founder-chip {
  position: absolute;
  top: -1.2rem; right: 1.5rem;
  background: var(--paper);
  border-radius: 100px;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: var(--shadow-tight);
}
.hero-founder-chip img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.hero-founder-chip span { font-size: 0.75rem; font-weight: 700; color: var(--ink); line-height: 1.2; display: block; }
.hero-founder-chip small { font-weight: 500; color: var(--text-muted); font-size: 0.68rem; }

/* ---------------------------------- 7. MARQUEE / TRUST STRIP ---------------------------------- */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: var(--space-md);
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: scrollTrack 28s linear infinite;
}
@keyframes scrollTrack { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex; align-items: center; gap: 0.6rem;
}
.trust-track span::before { content: "✦"; color: var(--gold); }

/* ---------------------------------- 8. ABOUT ---------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-img-main img { aspect-ratio: 3/4; object-fit: cover; }
.about-quote {
  position: absolute;
  bottom: -2rem; right: -1.5rem;
  background: var(--gold);
  color: var(--ink);
  padding: 1.4rem;
  border-radius: var(--radius-md);
  max-width: 220px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.4;
}
.about-body p { margin-bottom: var(--space-sm); color: var(--text-body); }
.vm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: var(--space-lg); }
.vm-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid var(--line);
}
.vm-card svg { width: 30px; height: 30px; color: var(--kumkum); margin-bottom: 0.8rem; }
.vm-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.vm-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ---------------------------------- 9. PRINCIPAL / FOUNDER MESSAGE ---------------------------------- */
.founder-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: #DCE7E3;
  position: relative;
  overflow: hidden;
}
.founder-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(217,142,43,0.18), transparent 55%);
}
.founder-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1;
}
.founder-photo img { aspect-ratio: 3/4; object-fit: cover; }
.founder-text { position: relative; z-index: 1; }
.founder-text .eyebrow { color: var(--gold-soft); }
.founder-text h2 { color: var(--paper); margin-bottom: var(--space-sm); }
.founder-text blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.55;
  margin: 0 0 var(--space-md);
  color: #F1E9D8;
}
.founder-sign strong { display: block; color: var(--paper); font-family: var(--font-display); font-size: 1.05rem; }
.founder-sign span { font-size: 0.82rem; color: #9FB6B0; }

/* ---------------------------------- 10. WHY DIFFERENT (FEATURE GRID) ---------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.feature-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--ink-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--ink); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------------------------------- 11. PROGRAMS ---------------------------------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.program-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.program-card.featured { background: var(--ink); color: #DCE7E3; border-color: transparent; }
.program-card.featured h3, .program-card.featured .program-mark { color: var(--paper); }
.program-mark {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--kumkum);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.program-card h3 { font-size: 1.35rem; margin-bottom: 1.2rem; }
.program-card ul { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.6rem; }
.program-card ul li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-body);
}
.program-card.featured ul li { color: #C7D6D1; }
.program-card ul li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---------------------------------- 12. DEPARTMENTS ---------------------------------- */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.dept-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-tight);
}
.dept-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dept-card:hover img { transform: scale(1.08); }
.dept-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(31,58,52,0.92) 0%, rgba(31,58,52,0.1) 55%, transparent 100%);
  display: flex; align-items: flex-end;
  padding: 1.3rem;
}
.dept-overlay h3 { color: var(--paper); font-size: 1.05rem; }
.dept-overlay span { color: var(--gold-soft); font-size: 0.78rem; }

/* ---------------------------------- 13. FACILITIES (asymmetric bento) ---------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1.2rem;
}
.bento-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bento-item:hover img { transform: scale(1.06); }
.bento-item.big { grid-column: span 2; grid-row: span 2; }
.bento-label {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  background: rgba(250,246,237,0.94);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
}

/* ---------------------------------- 14. GALLERY ---------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); filter: brightness(0.75); }
.gallery-item::after {
  content: attr(data-caption);
  position: absolute; inset: auto 0 0 0;
  padding: 0.8rem;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateY(100%);
  transition: transform var(--transition);
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
}
.gallery-item:hover::after { transform: translateY(0); }
.gallery-actions { text-align: center; margin-top: var(--space-lg); }

/* ---------------------------------- 15. NEWS ---------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.news-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.news-thumb { aspect-ratio: 16/10; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 1.5rem; }
.news-meta { display: flex; gap: 0.9rem; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.7rem; }
.news-meta .tag { color: var(--kumkum); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.news-body h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.news-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.news-link { font-size: 0.85rem; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 0.4rem; }
.news-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.news-link:hover svg { transform: translateX(4px); }

/* ---------------------------------- 16. TESTIMONIALS ---------------------------------- */
.testimonial-slider { position: relative; max-width: 760px; margin-inline: auto; }
.testimonial-track { overflow: hidden; }
.testimonial-slides { display: flex; transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.testimonial-slide { min-width: 100%; padding: 0.5rem; }
.testimonial-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  text-align: center;
  box-shadow: var(--shadow-tight);
}
.testimonial-card svg.quote-mark { width: 34px; height: 34px; color: var(--gold); margin-bottom: 1rem; }
.testimonial-card p { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.55; color: var(--ink); margin-bottom: 1.4rem; }
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
.testimonial-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-person strong { display: block; font-size: 0.92rem; }
.testimonial-person span { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-nav { display: flex; justify-content: center; gap: 0.9rem; margin-top: 1.6rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: none; padding: 0; transition: background var(--transition), transform var(--transition); }
.dot.active { background: var(--gold); transform: scale(1.3); }
.testimonial-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-tight);
}
.testimonial-arrow.prev { left: -70px; }
.testimonial-arrow.next { right: -70px; }
.testimonial-arrow svg { width: 18px; height: 18px; }

/* ---------------------------------- 17. STATS (fun facts) ---------------------------------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; text-align: center; }
.stat-card { padding: 1.5rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  display: block;
}
.stat-label { font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; color: #B7C9C4; margin-top: 0.4rem; }

/* ---------------------------------- 18. FAQ ---------------------------------- */
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: var(--paper); border-radius: var(--radius-md); border: 1px solid var(--line); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  background: none; border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink);
}
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--ink-tint); flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--ink);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; transition: transform var(--transition); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-answer p { padding: 0 1.6rem 1.4rem; font-size: 0.94rem; color: var(--text-muted); }
.faq-item.open .faq-answer { max-height: 240px; }

/* ---------------------------------- 19. IMPORTANT LINKS ---------------------------------- */
.links-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.link-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem 1rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.link-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-tight); }
.link-card .link-icon {
  width: 44px; height: 44px; margin-inline: auto 0.7rem;
  border-radius: 50%; background: var(--ink-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.7rem;
}
.link-card .link-icon svg { width: 20px; height: 20px; color: var(--ink); }
.link-card strong { display: block; font-size: 0.85rem; color: var(--ink); }
.link-card span { font-size: 0.72rem; color: var(--text-muted); }

/* ---------------------------------- 20. CONTACT ---------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: var(--space-lg); }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.3rem; }
.contact-card .link-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--ink-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .link-icon svg { width: 20px; height: 20px; color: var(--ink); }
.contact-card strong { display: block; font-size: 0.92rem; color: var(--ink); margin-bottom: 0.2rem; }
.contact-card span, .contact-card a { font-size: 0.88rem; color: var(--text-muted); }
.map-embed { border-radius: var(--radius-md); overflow: hidden; height: 220px; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.contact-form { background: var(--paper); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-tight); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.8rem; font-weight: 700; color: var(--ink); }
.form-field input, .form-field textarea {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); outline: none; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.8rem; }
.form-success { display: none; align-items: center; gap: 0.6rem; background: var(--ink-tint); color: var(--ink); padding: 0.9rem 1.1rem; border-radius: 10px; font-size: 0.88rem; font-weight: 700; margin-top: 1rem; }
.form-success.show { display: flex; }

/* ---------------------------------- 21. FOOTER ---------------------------------- */
.footer { background: var(--ink); color: #A9BDB7; padding-top: var(--space-2xl); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-lg); padding-bottom: var(--space-xl); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-text strong { color: var(--paper); }
.footer-brand p { margin-top: 1rem; font-size: 0.88rem; line-height: 1.7; max-width: 32ch; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; transition: background var(--transition), border-color var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; color: var(--paper); }
.footer-col h4 { color: var(--paper); font-size: 0.92rem; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-newsletter form { display: flex; margin-top: 0.9rem; }
.footer-newsletter input { flex: 1; padding: 0.75rem 1rem; border-radius: 100px 0 0 100px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: var(--paper); font-size: 0.85rem; }
.footer-newsletter button { padding: 0.75rem 1.1rem; border-radius: 0 100px 100px 0; background: var(--gold); color: var(--ink); border: none; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-block: 1.6rem; font-size: 0.8rem; flex-wrap: wrap; gap: 0.8rem; }
.footer-bottom a { color: #A9BDB7; }

/* ---------------------------------- 22. BACK TO TOP ---------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition);
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--ink); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------------------------------- 23. SCROLL REVEAL ---------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ---------------------------------- 24. SKIP LINK ---------------------------------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 1rem 1.4rem; z-index: 2000; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------------------------------- 25. RESPONSIVE ---------------------------------- */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .news-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .links-grid { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .bento-item.big { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw); background: var(--paper); flex-direction: column; align-items: flex-start; padding: 6rem 1.8rem 2rem; gap: 0.3rem; box-shadow: -20px 0 50px rgba(0,0,0,0.15); transform: translateX(100%); transition: transform var(--transition); overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { display: block; padding: 0.85rem 0; width: 100%; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; padding-left: 0.8rem; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin-inline: auto; }
  .about-grid, .founder-panel, .contact-grid { grid-template-columns: 1fr; }
  .founder-panel { padding: var(--space-lg); }
  .founder-photo { max-width: 320px; margin-inline: auto; }
  .vm-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-arrow { display: none; }
}

@media (max-width: 640px) {
  .feature-grid, .dept-grid, .links-grid { grid-template-columns: 1fr 1fr; }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr; }
  .bento-item.big { grid-column: 1; }
  .bento-item { grid-row: span 1 !important; height: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-founder-chip { display: none; }
  .hero-badge { left: 0.5rem; bottom: -1rem; max-width: 210px; padding: 1rem; }
}

@media (max-width: 420px) {
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
