/* ============================================================
   UES AKOLA — Custom Stylesheet
   Layered on top of Tailwind CDN
   Design: Classic & Formal | Deep Green & Gold
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Cinzel:wght@400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --green-deep:    #1a3a2a;
  --green-mid:     #2d5a40;
  --green-light:   #3d7a56;
  --green-pale:    #e8f0eb;
  --gold-bright:   #c9a84c;
  --gold-mid:      #b8922f;
  --gold-light:    #e8c97a;
  --gold-pale:     #fdf8ec;
  --cream:         #faf7f0;
  --ink:           #1c1c1c;
  --ink-muted:     #4a4a4a;
  --ink-faint:     #7a7a7a;
  --border-gold:   rgba(201, 168, 76, 0.35);
  --border-green:  rgba(26, 58, 42, 0.15);

  --font-display:  'Cinzel', serif;
  --font-heading:  'Cormorant Garamond', serif;
  --font-body:     'EB Garamond', serif;

  --shadow-card:   0 4px 24px rgba(26, 58, 42, 0.10);
  --shadow-nav:    0 2px 20px rgba(26, 58, 42, 0.18);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Reset & Typography --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-mid); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-deep);
  box-shadow: var(--shadow-nav);
  border-bottom: 2px solid var(--gold-bright);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.nav-logo-emblem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  border: 2px solid var(--gold-light);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-bright); }
.nav-links a.active::after { transform: scaleX(1); }

/* Admissions CTA in nav */
.nav-cta {
  font-family: var(--font-display) !important;
  font-size: 0.72rem !important;
  background: var(--gold-bright) !important;
  color: var(--green-deep) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 2px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: var(--transition) !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--green-deep) !important;
}

.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  background: var(--green-deep);
  border-top: 1px solid var(--border-gold);
  padding: 1rem 1.5rem;
}

.nav-mobile a {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold-bright); }

.nav-mobile a:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 500px) {
  .nav-logo-text { display: none; }
}

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

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--green-deep);
}

/* Geometric background pattern */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(45,90,64,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0f2318 0%, #1a3a2a 40%, #2d5a40 100%);
}

/* Subtle geometric ornament overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.03) 60px,
      rgba(201,168,76,0.03) 61px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.03) 60px,
      rgba(201,168,76,0.03) 61px
    );
}

/* Decorative gold vertical rule (legacy, kept for reference) */
.hero-rule {
  position: absolute;
  right: 12%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-bright) 30%, var(--gold-bright) 70%, transparent);
  opacity: 0.2;
}

/* ============================================================
   HERO — TWO-COLUMN LAYOUT
   ============================================================ */

.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-left {
  /* inherits hero-content animations via child selectors */
}

/* ---- Right Column: Leadership ---- */

.hero-right {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.5s;
}

.hero-leadership-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0.7;
  margin-bottom: 1.1rem;
  padding-left: 0.1rem;
}

.hero-leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Individual leader card */
.hero-leader-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
  padding: 1.1rem 0.9rem 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-leader-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-leader-card:hover {
  border-color: rgba(201, 168, 76, 0.42);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.hero-leader-card:hover::before { opacity: 1; }

/* Photo frame */
.hero-leader-photo-frame {
  position: relative;
  width: 90px;
  height: 100px;
  margin-bottom: 0.85rem;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(26, 58, 42, 0.6);
  flex-shrink: 0;
}

.hero-leader-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Placeholder shown when image missing / errors */
.hero-leader-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(201, 168, 76, 0.4);
  background: repeating-linear-gradient(
    135deg,
    rgba(201,168,76,0.03) 0px,
    rgba(201,168,76,0.03) 2px,
    transparent 2px,
    transparent 10px
  );
}

/* Role badge on photo frame */
.hero-leader-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.28rem 0.4rem;
  background: rgba(26, 58, 42, 0.88);
  color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}

.hero-leader-badge--gold {
  background: rgba(201, 168, 76, 0.88);
  color: var(--green-deep);
}

/* Caption */
.hero-leader-caption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-leader-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.hero-leader-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.4;
  font-style: italic;
}

/* ---- Responsive: stack on mobile ---- */
@media (max-width: 900px) {
  .hero-two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-right {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-leadership-grid {
    gap: 0.75rem;
  }

  .hero-leader-photo-frame {
    width: 76px;
    height: 84px;
  }

  .hero-leader-name { font-size: 0.82rem; }
  .hero-leader-title { font-size: 0.66rem; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-bright);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  max-width: 750px;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-title-accent {
  color: var(--gold-bright);
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 600;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-bright), transparent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.65s;
}

.hero-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.75s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

/* Stat strip inside hero */
.hero-stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}

.hero-stat {
  padding: 0 2rem;
  border-right: 1px solid rgba(201,168,76,0.15);
}

.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero-stat { border-right: none; padding: 0; }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(201,168,76,0.15); padding-right: 1.5rem; }
}

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

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--gold-bright);
  color: var(--green-deep);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: var(--transition);
  border: 2px solid var(--gold-bright);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: var(--green-deep);
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  border: 1px solid var(--green-mid);
  transition: var(--transition);
}

.btn-outline-green:hover {
  background: var(--green-deep);
  color: var(--gold-bright);
  border-color: var(--green-deep);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */

.section {
  padding: 6rem 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-mid);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.section-heading-light {
  color: #ffffff;
}

.section-subheading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-bright), var(--gold-light));
  margin: 1rem 0 2.5rem;
}

/* Alternating cream / white sections */
.section-cream { background: var(--cream); }
.section-white { background: #ffffff; }
.section-green { background: var(--green-deep); }
.section-green-mid { background: var(--green-mid); }
.section-gold-pale { background: var(--gold-pale); }

/* ============================================================
   CARDS
   ============================================================ */

.card {
  background: #ffffff;
  border: 1px solid var(--border-green);
  border-radius: 4px;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-bright), var(--gold-light));
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,58,42,0.14);
  border-color: var(--border-gold);
}

.card:hover::before { opacity: 1; }

.card-year {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.card-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ============================================================
   FEATURED / HIGHLIGHT BLOCKS
   ============================================================ */

.highlight-block {
  background: var(--green-deep);
  color: white;
  padding: 3rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.highlight-block::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
}

.quote-block {
  border-left: 3px solid var(--gold-bright);
  padding: 1.5rem 2rem;
  background: var(--gold-pale);
  border-radius: 0 4px 4px 0;
  margin: 2rem 0;
}

.quote-block p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.7;
}

.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-mid);
  font-style: normal;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb-bar {
  background: var(--green-deep);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0.85rem 1.5rem;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.breadcrumb-inner a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: opacity 0.2s;
}

.breadcrumb-inner a:hover { opacity: 0.75; }
.breadcrumb-inner span { color: rgba(255,255,255,0.35); }

/* Page header banner (for inner pages) */
.page-header {
  background: var(--green-deep);
  padding: 4rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--gold-bright);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.025) 60px,
      rgba(201,168,76,0.025) 61px
    );
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

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

.footer {
  background: #0d1f14;
  border-top: 2px solid var(--gold-bright);
  color: rgba(255,255,255,0.6);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer-logo-emblem {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-col-heading {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-icon {
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.footer-est {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 540px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   HOME PAGE — INSTITUTIONS PREVIEW STRIP
   ============================================================ */

.institutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) { .institutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .institutions-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOME PAGE — MISSION STRIP
   ============================================================ */

.mission-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
}

.mission-strip-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border-gold);
  text-align: center;
  background: #ffffff;
  transition: var(--transition);
}

.mission-strip-item:last-child { border-right: none; }

.mission-strip-item:hover {
  background: var(--green-deep);
}

.mission-strip-item:hover .mission-strip-heading,
.mission-strip-item:hover .mission-strip-body { color: rgba(255,255,255,0.85); }

.mission-strip-item:hover .mission-strip-icon { color: var(--gold-bright); }

.mission-strip-icon {
  font-size: 2rem;
  color: var(--green-mid);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.mission-strip-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.mission-strip-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-muted);
  transition: var(--transition);
}

@media (max-width: 680px) {
  .mission-strip { grid-template-columns: 1fr; }
  .mission-strip-item { border-right: none; border-bottom: 1px solid var(--border-gold); }
  .mission-strip-item:last-child { border-bottom: none; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   UTILITY OVERRIDES
   ============================================================ */

.text-gold { color: var(--gold-bright); }
.text-green { color: var(--green-deep); }
.text-green-mid { color: var(--green-mid); }
.bg-cream { background: var(--cream); }

/* Gold ornamental rule */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-bright), transparent);
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  transform: rotate(45deg);
  flex-shrink: 0;
}
