/* ── Fonts ─────────────────────────────────────────────────────────
   Plus Jakarta Sans  →  body, nav, buttons, labels, all body copy
   Fraunces           →  headings, titles, brand name, card titles
──────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,600&display=swap');

:root {
  --background: #102c26;
  --foreground: #ffffff;
  --card: #1a3f37;
  --card-foreground: #ffffff;
  --primary: #32418C;
  --primary-foreground: #ffffff;
  --secondary: #2a4e44;
  --secondary-foreground: #FBD117;
  --muted: #1f4a40;
  --muted-foreground: #cbd5e1;
  --accent: #2d554a;
  --accent-foreground: #FBD117;
  --border: rgba(251, 209, 23, .15);
  --input-background: #1a3f37;
  --radius: 0.625rem;
  --shadow: 0 1px 3px rgba(0, 0, 0, .3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .3), 0 4px 6px -2px rgba(0, 0, 0, .2);
  --nu-gold: #FBD117;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
}

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

html {
  scroll-behavior: smooth;
  zoom: 80%;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: all .3s ease;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(251, 209, 23, .1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--secondary), var(--nu-gold));
  border-radius: 4px;
}

/* Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--nu-gold));
  z-index: 1001;
  transition: width .3s ease;
}

/* Header */
.header,
.footer {
  background: #1a3f37 !important;
}

.header {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: .75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #fff;
  transition: all .3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
}

.header-container {
  max-width: none;
  margin: 0;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Header logo ring — matches logo shape (rounded square) */
.header-logo-ring-wrap {
  position: relative;
  width: 4.3rem;
  height: 4.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Fixed thick square border — stays still */
.header-logo-ring {
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius) + 4px);
  border: 2.5px solid rgba(255, 215, 15, .55);
  box-shadow: 0 0 0 1px rgba(255, 215, 15, .1);
}

/* No dot on ::before — dot lives on wrap::after so it orbits independently */
.header-logo-ring::before {
  display: none;
}

/* Orbiting gold dot */
.header-logo-ring-wrap::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nu-gold);
  box-shadow: 0 0 8px var(--nu-gold), 0 0 18px rgba(251, 209, 23, .45);
  top: -5px;
  left: 50%;
  margin-left: -3.5px;
  transform-origin: 3.5px calc(3.5px + 2.15rem + 4px);
  animation: rotateSlow 6s linear infinite;
  z-index: 3;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.logo img {
  height: 4.3rem;
  width: 4.3rem;
  border-radius: var(--radius);
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: .125rem;
}

.logo h1 {
  font-family: var(--font-serif);
  color: var(--nu-gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.logo-subtitle {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, .9);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-desktop a {
  font-family: var(--font-sans);
  color: #FBD117;
  text-decoration: none;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  transition: all .3s ease;
  font-size: .88rem;
  font-weight: 500;
}

.nav-desktop a:hover {
  background: rgba(255, 255, 255, .1);
}

.nav-desktop .login-btn {
  border: 2px solid #fff;
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  font-weight: 600;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(16, 44, 38, .85) 0%, rgba(16, 44, 38, .9) 50%, rgba(16, 44, 38, .95) 100%) !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  padding: 6rem 1rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(251, 209, 23, .08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .05) 0%, transparent 30%),
    linear-gradient(135deg, rgba(16, 44, 38, .2) 0%, transparent 50%, rgba(16, 44, 38, .1) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/* ── Campus seal block ───────────────────────────────────────────── */
.campus-seal-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  position: relative;
}

/* Outer ring container */
.campus-seal-ring-outer {
  position: relative;
  width: 168px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -5rem;
  margin-bottom: .6rem;
}

/* Campus seal ring — static, no animation, no dot */
.logo-seal-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 215, 15, .35);
  box-shadow: 0 0 10px rgba(251, 209, 23, .12);
}

/* Campus logo image — bigger, circular */
.campus-icon-img {
  width: 156px !important;
  margin-top: .05rem;
  height: 156px !important;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(251, 209, 23, .25), 0 8px 32px rgba(0, 0, 0, .35);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  z-index: 1;
}

.campus-icon-img:hover {
  transform: scale(1.06);
  box-shadow: 0 0 0 4px rgba(251, 209, 23, .5), 0 12px 40px rgba(0, 0, 0, .4);
}

/* School name badge — permanent subtle glow, no hover */
.top-left-campus {
  position: static !important;
  display: inline-flex;
  align-items: center;
  background: rgba(26, 63, 55, 0.95);
  backdrop-filter: blur(12px);
  padding: .38rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 209, 23, .4);
  border-color: var(--nu-gold);
  box-shadow: 0 12px 28px rgba(251, 209, 23, 0.2);
}

.campus-text {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  color: var(--nu-gold);
  letter-spacing: .03em;
  white-space: nowrap;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  padding-top: 2rem;
}

.hero h2 {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.hero h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--nu-gold);
  border-radius: 2px;
}

.hero p {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: rgba(240, 248, 255, .92);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-btn {
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
  font-size: .95rem;
  box-shadow: var(--shadow);
  letter-spacing: .01em;
}

.hero-btn.primary {
  background: var(--nu-gold);
  color: #102c26;
}

.hero-btn.primary:hover {
  background: #e6be0f;
  color: #102c26;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 209, 23, .4);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .8);
}

.hero-btn.secondary:hover {
  background: rgba(251, 209, 23, .15);
  border-color: #FBD117;
  color: #FBD117;
  transform: translateY(-2px);
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.feature-card {
  background: rgba(26, 63, 55, .7);
  border-radius: calc(var(--radius)*1.5);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(251, 209, 23, .2);
  transition: all .3s ease;
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(26, 63, 55, .9);
  border-color: rgba(251, 209, 23, .5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .3);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(251, 209, 23, .3), rgba(251, 209, 23, .5));
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: #FBD117;
  border: 2px solid rgba(251, 209, 23, .4);
  transition: all .3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #FBD117, #e6be0f);
  color: #102c26;
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #fff;
  letter-spacing: -.01em;
}

.feature-card:hover h3 {
  color: #FBD117;
}

.feature-card p {
  font-family: var(--font-sans);
  color: #e2e8f0;
  line-height: 1.65;
  font-size: .84rem;
}

/* Main / Announcements */
.main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
  position: relative;
}

.announcements-container {
  max-width: 64rem;
  margin: 0 auto;
}

.card {
  background: var(--card);
  border-radius: calc(var(--radius)*1.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
  border: 1px solid rgba(251, 209, 23, .2);
  transition: all .3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.card-header {
  padding: 2rem 2rem 0;
}

.card-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-serif);
  color: var(--nu-gold);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}

.card-content {
  padding: 0 2rem 2rem;
}

.announcements-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.no-announcements {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--muted-foreground);
}

.no-announcements-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  color: var(--muted-foreground);
  opacity: .7;
}

.no-announcements h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: .75rem;
  color: var(--foreground);
  font-weight: 600;
}

.no-announcements p {
  font-family: var(--font-sans);
  color: var(--muted-foreground);
  font-size: .84rem;
  line-height: 1.65;
}

.view-all-btn {
  margin-top: 2rem;
  text-align: center;
}

.view-all-btn button {
  font-family: var(--font-sans);
  border: none;
  background: var(--background);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  transition: all .3s ease;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.view-all-btn button:hover {
  background: var(--nu-gold);
  color: #102c26;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  color: #fff;
  margin-top: 6rem;
  position: relative;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--nu-gold);
  letter-spacing: -.01em;
}

.footer-section p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  font-size: .84rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, .82);
  font-size: .83rem;
}

.footer-btn {
  font-family: var(--font-sans);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .88rem;
  font-weight: 500;
  transition: all .3s ease;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.footer-btn:hover {
  background: var(--nu-gold);
  color: #102c26;
  border-color: var(--nu-gold);
}

.social-links {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, .7);
  transition: all .3s ease;
  padding: .5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: #102c26;
  background: var(--nu-gold);
}

.footer-separator {
  height: 2px;
  background: rgba(251, 209, 23, .3);
  margin: 3rem 0;
  border-radius: 1px;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-text {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
}

/* FAB */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--nu-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #102c26;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(251, 209, 23, .4);
  transition: all .3s ease;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
}

.fab.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab:hover {
  background: #e6be0f;
  transform: translateY(-3px);
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  opacity: 1;
  animation: backdropPulse .5s ease-in-out;
}

@keyframes backdropPulse {
  0% {
    background: rgba(0, 0, 0, 0);
  }

  50% {
    background: rgba(0, 0, 0, .8);
  }

  100% {
    background: rgba(0, 0, 0, .7);
  }
}

.modal-content {
  background: #fff;
  border-radius: calc(var(--radius)*1.5);
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  transform: translateY(-50px) scale(.9);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.modal.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-header {
  background: var(--secondary);
  color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.modal-header h3 {
  font-family: var(--font-serif);
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--nu-gold);
  letter-spacing: -.01em;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft .6s ease .2s both;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  opacity: 0;
  transform: rotate(180deg) scale(.5);
  animation: rotateIn .6s ease .3s both;
}

@keyframes rotateIn {
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.modal-close:hover {
  background: rgba(255, 255, 255, .2);
  transform: rotate(90deg) scale(1.1);
}

.modal-body {
  padding: 2rem;
}

/* Modal contact */
.contact-info-modal {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item-modal {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp .6s ease both;
}

.contact-item-modal:nth-child(1) {
  animation-delay: .4s;
}

.contact-item-modal:nth-child(2) {
  animation-delay: .5s;
}

.contact-item-modal:nth-child(3) {
  animation-delay: .6s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: .25rem;
  transition: all .3s ease;
}

.contact-item-modal:hover .contact-icon {
  color: var(--nu-gold);
  transform: scale(1.1) rotate(5deg);
}

.contact-details {
  flex: 1;
  transition: all .3s ease;
}

.contact-details h4 {
  font-family: var(--font-sans);
  margin: 0 0 .5rem;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s ease;
}

.contact-details p {
  font-family: var(--font-sans);
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
  font-size: .84rem;
  transition: all .3s ease;
}

.contact-item-modal:hover .contact-details h4 {
  color: var(--nu-gold);
  transform: translateX(5px);
}

.contact-item-modal:hover .contact-details p {
  color: #1f2937;
  transform: translateX(5px);
}

/* Modal links */
.modal-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-link-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  transition: all .3s ease;
  cursor: pointer;
  background: #fff;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInRight .6s ease both;
}

.modal-link-item:nth-child(1) {
  animation-delay: .40s;
}

.modal-link-item:nth-child(2) {
  animation-delay: .45s;
}

.modal-link-item:nth-child(3) {
  animation-delay: .50s;
}

.modal-link-item:nth-child(4) {
  animation-delay: .55s;
}

.modal-link-item:nth-child(5) {
  animation-delay: .60s;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.modal-link-item:hover {
  background: rgba(251, 209, 23, .08);
  border-color: var(--nu-gold);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  transform: translateY(-3px);
}

.modal-link-item a {
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  font-size: .87rem;
  transition: all .3s ease;
}

.modal-link-item:hover a {
  color: var(--secondary);
}

.modal-link-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
  transition: all .3s ease;
}

.modal-link-item:hover .modal-link-icon {
  color: var(--nu-gold);
  transform: scale(1.1);
}

/* Content modals */
.content-modal-body {
  padding: 1.5rem;
}

.content-modal-body h4 {
  font-family: var(--font-serif);
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

.content-modal-body p {
  font-family: var(--font-sans);
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-size: .84rem;
}

.content-modal-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.content-modal-body li {
  font-family: var(--font-sans);
  color: #4b5563;
  margin-bottom: .45rem;
  line-height: 1.55;
  font-size: .83rem;
}

/* Seasonal */
.snow-container,
.leaves-container,
.flowers-container,
.sun-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}

.season-selector {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.season-btn {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all .3s ease;
}

.season-menu {
  position: absolute;
  bottom: 70px;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 8px;
  width: 150px;
}

.season-menu.active {
  display: flex;
}

.season-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

/* Responsive */
@media(max-width:768px) {
  .hero h2 {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .campus-seal-ring-outer {
    width: 128px;
    height: 128px;
  }

  .campus-icon-img {
    width: 118px !important;
    height: 118px !important;
  }

  .campus-text {
    font-size: .72rem;
  }

  .hero-content {
    padding-top: 0;
  }

  .header {
    padding: .5rem .75rem !important;
    overflow: visible !important;
  }

  .header-container {
    padding: 0 !important;
    overflow: visible !important;
  }

  .header-content {
    gap: .5rem !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    align-items: center !important;
  }

  .header-logo-ring-wrap {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }

  .logo img {
    height: 2.5rem !important;
    width: 2.5rem !important;
    flex-shrink: 0 !important;
  }

  .logo {
    gap: .5rem !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .logo-text {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .logo h1 {
    font-size: 1rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .logo-subtitle {
    display: none !important;
  }

  .nav-desktop {
    flex-shrink: 0 !important;
    gap: .4rem !important;
    overflow: visible !important;
  }

  .nav-desktop a {
    padding: .4rem .6rem !important;
    font-size: .8rem !important;
    white-space: nowrap !important;
  }

  .nav-desktop .login-btn {
    padding: .4rem .75rem !important;
    font-size: .8rem !important;
    white-space: nowrap !important;
  }
}

@media(max-width:480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .top-left-campus {
    padding: .5rem 1rem;
    gap: .5rem;
  }

  .campus-text {
    font-size: .7rem;
    padding: .25rem .75rem;
  }

  .logo h1 {
    font-size: .9rem !important;
    max-width: 120px !important;
  }

  .nav-desktop a {
    padding: .35rem .5rem !important;
    font-size: .75rem !important;
  }

  .nav-desktop .login-btn {
    padding: .35rem .6rem !important;
    font-size: .75rem !important;
  }
}