/* ============================================================
   VARAMMA UNIVERSITY — Design System
   ============================================================ */

:root {
  --navy: #102A43;
  --navy-deep: #0B1F33;
  --charcoal: #1F2933;
  --sand: #DDBB91;
  --sand-soft: #EAD9C0;
  --beige: #F5EFE7;
  --off-white: #FCFBF8;
  --gray: #6B7280;
  --gold: #B88A52;
  --white: #FFFFFF;
  --line: #E7E0D6;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 18px;

  --shadow-card: 0 1px 2px rgba(16, 42, 67, 0.04), 0 8px 24px rgba(16, 42, 67, 0.07);
  --shadow-lift: 0 2px 4px rgba(16, 42, 67, 0.05), 0 18px 40px rgba(16, 42, 67, 0.13);

  --container: 1240px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-s);
  transition: top 0.2s var(--ease);
}

.skip-link:focus { top: 16px; color: var(--gold); }

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--sand);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(184, 138, 82, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(252, 251, 248, 0.55);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--navy);
  color: var(--white);
  padding: 11px 24px;
}

.btn-nav:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(184, 138, 82, 0.35);
}

header.scrolled .btn-nav {
  background: var(--navy);
  color: var(--white);
}

/* ---------------- Typography helpers ---------------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow-light { color: var(--sand-soft); }

.section { padding: 108px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
}

.section-sub {
  margin-top: 18px;
  font-size: 1.06rem;
  color: var(--gray);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.link-arrow span { transition: transform 0.28s var(--ease); }

.link-arrow:hover span { transform: translateX(5px); }
.link-arrow:hover { border-color: var(--gold); }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header.scrolled {
  background: rgba(252, 251, 248, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(16, 42, 67, 0.06);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  transition: transform 0.35s var(--ease);
}

.brand-mark svg { width: 46px; height: 46px; }

.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.03); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--off-white);
  transition: color 0.3s var(--ease);
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-soft);
  transition: color 0.3s var(--ease);
}

.scrolled .brand-name { color: var(--navy); }
.scrolled .brand-sub { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list a {
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(252, 251, 248, 0.92);
  position: relative;
  padding: 6px 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a:hover { color: var(--off-white); }

.scrolled .nav-list a { color: var(--charcoal); }
.scrolled .nav-list a:hover { color: var(--navy); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: var(--off-white);
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.icon-btn:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.scrolled .icon-btn { color: var(--charcoal); }
.scrolled .icon-btn:hover { background: var(--beige); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.site-header:not(.scrolled).menu-open .hamburger span,
.site-header:not(.scrolled) .hamburger:not(:checked) span { background: var(--off-white); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 51, 0.92);
  backdrop-filter: blur(8px);
  z-index: 150;
  display: grid;
  place-items: start center;
  padding: 120px 24px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-panel {
  width: 100%;
  max-width: 680px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
}

.search-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--navy);
  outline: none;
}

.search-form .icon-btn { background: var(--navy); color: var(--white); flex-shrink: 0; }
.search-form .icon-btn:hover { background: var(--gold); }

.search-close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.search-close:hover { background: rgba(255, 255, 255, 0.14); transform: rotate(90deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroZoom 12s var(--ease) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.02); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.55) 0%, rgba(11, 31, 51, 0.35) 45%, rgba(11, 31, 51, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 32px 120px;
}

.hero .eyebrow { color: var(--sand-soft); }

.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  line-height: 1.08;
  color: var(--off-white);
  max-width: 860px;
  margin: 0 auto 22px;
  text-wrap: balance;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(252, 251, 248, 0.88);
  max-width: 620px;
  margin: 0 auto 38px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(252, 251, 248, 0.8);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: scrollBob 2.4s ease-in-out infinite;
}

.hero-scroll:hover { color: var(--white); border-color: var(--white); }

@keyframes scrollBob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============================================================
   ABOUT / STATS
   ============================================================ */

.about-section { background: var(--off-white); padding-top: 108px; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.about-stat {
  background: var(--beige);
  border-radius: var(--radius-m);
  padding: 34px 28px;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.about-stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.stat-num {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1.1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.4;
}

/* ============================================================
   ACADEMIC PROGRAMS
   ============================================================ */

.programs-section { background: var(--white); }

.program-cards {
  display: grid;
  gap: 26px;
}

.program-card {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  background: var(--sand);
  border-radius: var(--radius-m);
  padding: 44px 50px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(252, 251, 248, 0.14), transparent 45%);
  pointer-events: none;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.program-index {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  opacity: 0.55;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 8px;
}

.program-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.program-desc {
  font-size: 1.02rem;
  color: var(--navy-deep);
  opacity: 0.82;
  max-width: 640px;
  margin-bottom: 20px;
}

.program-body .link-arrow {
  color: var(--navy);
  font-size: 0.95rem;
}

/* ============================================================
   GLOBAL CAMPUS
   ============================================================ */

.global-section { background: var(--off-white); }

.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.campus-card {
  display: flex;
  flex-direction: column;
}

.campus-media {
  display: block;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-card);
}

.campus-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.campus-card:hover .campus-media img { transform: scale(1.06); }

.campus-info { padding: 22px 6px 0; }

.campus-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.campus-loc {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.campus-info .link-arrow { font-size: 0.92rem; }

/* ============================================================
   FACILITIES
   ============================================================ */

.facilities-section { background: var(--white); }

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.facility-card {
  background: var(--off-white);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.facility-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.facility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.facility-card:hover .facility-media img { transform: scale(1.07); }

.facility-body { padding: 26px 28px 30px; }

.facility-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.facility-desc {
  font-size: 0.98rem;
  color: var(--gray);
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
}

.facility-list li {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.facility-list li:hover {
  background: var(--sand-soft);
  transform: translateY(-2px);
}

/* ============================================================
   STUDENT EXPERIENCE
   ============================================================ */

.experience-section { background: var(--beige); }

.experience-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
}

.experience-media {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.experience-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.experience-media figcaption {
  padding: 14px 20px;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gray);
  background: var(--white);
}

.experience-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 30px;
}

.experience-highlights li {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "ico title"
    "ico desc";
  column-gap: 16px;
  row-gap: 2px;
  padding: 18px 0;
  border-top: 1px solid rgba(16, 42, 67, 0.12);
}

.experience-highlights li:last-child { border-bottom: 1px solid rgba(16, 42, 67, 0.12); }

.highlight-ico {
  grid-area: ico;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--off-white);
  color: var(--gold);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.experience-highlights strong {
  grid-area: title;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
}

.experience-highlights li > span:not(.highlight-ico) {
  grid-area: desc;
  font-size: 0.92rem;
  color: var(--gray);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section { background: var(--off-white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonial-card {
  position: relative;
  background: var(--sand);
  border-radius: var(--radius-m);
  padding: 48px 44px 36px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.quote-mark {
  position: absolute;
  top: 26px;
  right: 36px;
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--navy);
  opacity: 0.12;
  pointer-events: none;
}

.testimonial-card blockquote p {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.55;
  color: var(--navy);
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 42, 67, 0.16);
}

.testimonial-card figcaption img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--off-white);
}

.student-name {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
}

.student-meta {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 2px;
}

.placeholder-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gray);
}

/* ============================================================
   ADMISSIONS CTA
   ============================================================ */

.cta-section { background: var(--off-white); padding-top: 0; }

.cta-banner {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  text-align: center;
}

.cta-media { position: absolute; inset: 0; }

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.88) 0%, rgba(16, 42, 67, 0.76) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 96px 56px;
}

.cta-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.15;
  color: var(--off-white);
  max-width: 760px;
  margin: 0 auto 20px;
  text-wrap: balance;
}

.cta-sub {
  color: rgba(252, 251, 248, 0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-meta-key {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand-soft);
  margin-bottom: 6px;
}

.cta-meta-val {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--off-white);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-deep);
  color: rgba(252, 251, 248, 0.78);
  padding-top: 72px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
}

.footer-brand .brand-name { color: var(--off-white); }
.footer-brand .brand-sub { color: var(--gold); }

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sand-soft);
  font-size: 1.15rem;
  margin-top: 18px;
}

.footer-desc {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-col h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-soft);
  margin-bottom: 20px;
}

.footer-col ul { display: grid; gap: 11px; }

.footer-col a {
  color: rgba(252, 251, 248, 0.78);
  font-size: 0.95rem;
}

.footer-col a:hover { color: var(--gold); }

.footer-col address {
  display: grid;
  gap: 11px;
  font-style: normal;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.social-list {
  display: flex;
  gap: 12px;
}

.social-list a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(252, 251, 248, 0.85);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.social-list a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(252, 251, 248, 0.55);
}

.legal-links {
  display: flex;
  gap: 22px;
}

.legal-links a { color: rgba(252, 251, 248, 0.55); }
.legal-links a:hover { color: var(--gold); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .section { padding: 88px 0; }
  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(78vw, 360px);
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 120px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 100;
  }

  .nav-list.open { transform: translateX(0); box-shadow: -30px 0 60px rgba(11, 31, 51, 0.35); }

  .nav-list a {
    font-size: 1.15rem;
    color: var(--off-white) !important;
    padding: 8px 0;
  }

  .nav-list a::after { background: var(--gold); }
  .nav-actions .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hamburger span { background: var(--off-white); }
  .site-header.scrolled .hamburger span { background: var(--navy); }

  .campus-grid { grid-template-columns: 1fr; gap: 32px; }
  .facility-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .experience-layout { grid-template-columns: 1fr; gap: 36px; }
  .experience-media img { aspect-ratio: 16 / 10; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .cta-meta { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 620px) {
  .container { padding: 0 22px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 46px; }
  .hero { min-height: 620px; }
  .hero-content { padding: 130px 22px 100px; }
  .hero-title { font-size: clamp(2.1rem, 9.5vw, 2.9rem); }
  .hero-sub { font-size: 1.02rem; }
  .program-card { flex-direction: column; gap: 16px; padding: 34px 30px; }
  .program-title { font-size: 1.55rem; }
  .about-grid { grid-template-columns: 1fr; }
  .cta-content { padding: 64px 26px; }
  .cta-actions .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .brand-name { font-size: 1.2rem; }
  .header-inner { padding-top: 14px; padding-bottom: 14px; }
  .experience-quote { font-size: 1.2rem; }
  .testimonial-card { padding: 40px 28px 30px; }
  .testimonial-card blockquote p { font-size: 1.08rem; }
}