:root {
      --navy: #0d1b3e;
      --navy-mid: #162247;
      --navy-light: #1e3163;
      --gold: #c9a227;
      --gold-light: #e8c14a;
      --gold-pale: #f5e6b0;
      --cream: #faf6ee;
      --white: #ffffff;
      --text-muted: #8a95b0;
      --border: rgba(201,162,39,0.25);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Crimson Pro', Georgia, serif;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─── */
    .navbar {
      background: rgba(13,27,62,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .brand-emblem {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--navy);
      box-shadow: 0 0 20px rgba(201,162,39,0.4);
      flex-shrink: 0;
    }
    .brand-text {
      line-height: 1.2;
    }
    .brand-text .name {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--white);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .brand-text .sub {
      font-size: 0.68rem;
      color: var(--gold);
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .navbar-nav .nav-link {
      color: rgba(255,255,255,0.8) !important;
      font-family: 'Crimson Pro', serif;
      font-size: 0.95rem;
      letter-spacing: 0.06em;
      padding: 6px 14px !important;
      transition: color 0.2s;
      position: relative;
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 14px;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.3s;
    }
    .navbar-nav .nav-link:hover { color: var(--gold) !important; }
    .navbar-nav .nav-link:hover::after { width: calc(100% - 28px); }
    .navbar-toggler { border-color: var(--gold); }
    .navbar-toggler-icon { filter: brightness(2); }

    /* ─── HERO ─── */
    .hero {
      min-height: 92vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(135deg, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.6) 55%, rgba(13,27,62,0.82) 100%),
        url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=1600&q=80') center/cover no-repeat;
    }
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 20% 60%, rgba(201,162,39,0.08) 0%, transparent 70%);
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-eyebrow {
      font-size: 0.78rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      animation: fadeUp 0.8s ease both;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: '';
      width: 40px; height: 1px;
      background: var(--gold);
      opacity: 0.6;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 700;
      line-height: 1.12;
      color: var(--white);
      margin-bottom: 24px;
      animation: fadeUp 0.8s 0.15s ease both;
    }
    .hero h1 span { color: var(--gold); font-style: italic; }
    .hero-sub {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.72);
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 38px;
      animation: fadeUp 0.8s 0.3s ease both;
    }
    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp 0.8s 0.45s ease both;
    }
    .btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--navy);
      border: none;
      font-family: 'Crimson Pro', serif;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.08em;
      padding: 13px 30px;
      border-radius: 3px;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(201,162,39,0.35);
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(201,162,39,0.5);
      color: var(--navy);
    }
    .btn-outline-gold {
      background: transparent;
      color: var(--gold);
      border: 1px solid var(--gold);
      font-family: 'Crimson Pro', serif;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.08em;
      padding: 13px 30px;
      border-radius: 3px;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline-gold:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-2px);
    }

    /* Hero image side */
    .hero-image-side {
      position: relative;
      animation: fadeIn 1s 0.5s ease both;
    }
    .hero-school-card {
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(17, 18, 92, 0.507);
      border-radius: 8px;
      padding: 0;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      position: relative;
    }
    .hero-school-card:hover {
      border-color: rgba(216, 221, 241, 0.925);
      box-shadow: 0 30px 80px rgba(216, 221, 241, 0.925);
    }
    .hero-school-card img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      opacity: 0.85;
    }
    .overlay-content {
      text-align: center;
    }
    .fade-image {
      animation: fadeIn 1.5s ease-in-out;
      box-shadow: 0 4px 8px rgba(2, 8, 63, 0.89);
      background-color: rgb(16, 14, 110);
      border: 1px solid rgba(5, 34, 87, 0.918);
    }
    .gradient-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 30, 95, 0.452) 0%, transparent 100%);
      pointer-events: none;
    }
    .hero-card-label {
      padding: 16px 20px;
      font-size: 0.82rem;
      color: var(--gold-pale);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-top: 1px solid var(--border);
      text-align: center;
    }

    /* ─── STATS ─── */
    .stats-band {
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
      padding: 28px 0;
    }
    .stat-item {
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: center;
      padding: 8px 0;
    }
    .stat-icon {
      width: 50px; height: 50px;
      background: rgba(13,27,62,0.18);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      color: var(--navy);
      flex-shrink: 0;
    }
    .stat-info .num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }
    .stat-info .label {
      font-size: 0.82rem;
      color: rgba(13,27,62,0.7);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .stat-divider {
      width: 1px;
      height: 50px;
      background: rgba(13,27,62,0.2);
    }

    /* ─── SECTION BASE ─── */
    section { padding: 90px 0; }
    .section-tag {
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
    }
    .section-tag::before, .section-tag::after {
      content: '';
      flex: 1;
      max-width: 50px;
      height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700;
      color: var(--white);
      text-align: center;
      margin-bottom: 14px;
    }
    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
      text-align: center;
      max-width: 580px;
      margin: 0 auto 50px;
      line-height: 1.7;
    }

    /* ─── ABOUT ─── */
    .about-section {
      background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
      position: relative;
    }
    .about-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .about-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 42px 40px;
      position: relative;
      overflow: hidden;
    }
    .about-card::before {
      content: '"';
      position: absolute;
      top: -10px; left: 20px;
      font-family: 'Playfair Display', serif;
      font-size: 8rem;
      color: var(--gold);
      opacity: 0.08;
      line-height: 1;
    }
    .about-card p {
      font-size: 1.12rem;
      color: rgba(255,255,255,0.78);
      line-height: 1.85;
    }
    .about-img-wrap {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      height: 100%;
      min-height: 300px;
    }
    .about-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0.85;
    }
    .about-img-wrap::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(13,27,62,0.5) 0%, transparent 100%);
    }
    .gold-italic {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      color: var(--gold);
      font-size: 1.3rem;
      margin-bottom: 16px;
      display: block;
    }

    /* ─── EVENTS ─── */
    .events-section {
      background: var(--navy-mid);
      position: relative;
    }
    .event-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    .event-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 50px rgba(0,0,0,0.4);
      border-color: var(--gold);
    }
    .event-img {
      height: 500px;
      overflow: hidden;
      position: relative;
    }
    .event-img img {
      display: block;
      width: 100%; height: 100%;
      /*object-fit: cover;*/
      object-position: center center;
      transition: transform 0.5s;
    }
    .event-card:hover .event-img img { transform: scale(1.06); }
    .event-badge {
      position: absolute;
      top: 14px; left: 14px;
      background: var(--gold);
      color: var(--navy);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
    }
    .event-body { padding: 22px 22px 24px; }
    .event-date {
      font-size: 0.8rem;
      color: var(--gold);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .event-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 14px;
    }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      background: linear-gradient(135deg, var(--gold) 0%, #b8891e 100%);
      padding: 48px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-banner .headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 700;
      font-style: italic;
      color: var(--navy);
      text-align: center;
      margin-bottom: 24px;
    }
    .cta-banner .headline span { font-style: normal; }

    /* ─── HALL OF FAME ─── */
    .hof-section { background: var(--navy); }
    .hof-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: all 0.3s;
      position: relative;
    }
    .hof-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: 0 14px 40px rgba(201,162,39,0.15);
    }
    .hof-img {
      height: 220px;
      overflow: hidden;
      position: relative;
    }
    .hof-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top;
      transition: transform 0.5s;
    }
    .hof-card:hover .hof-img img { transform: scale(1.06); }
    .hof-img::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 60%;
      background: linear-gradient(to top, rgba(13,27,62,0.9) 0%, transparent 100%);
    }
    .hof-body { padding: 18px 20px 22px; }
    .hof-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px;
    }
    .hof-role {
      font-size: 0.85rem;
      color: var(--gold);
      letter-spacing: 0.06em;
    }
    .hof-award {
      position: absolute;
      top: 14px; right: 14px;
      width: 32px; height: 32px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--navy);
      font-size: 0.85rem;
      z-index: 2;
    }

    /* ─── FOOTER ─── */
    footer {
      background: #080f22;
      border-top: 1px solid var(--border);
      padding: 60px 0 30px;
    }
    .footer-brand { margin-bottom: 20px; }
    .footer-desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 260px;
    }
    .footer-heading {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
      letter-spacing: 0.04em;
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-links a i { font-size: 0.7rem; color: var(--gold); }
    .social-links { display: flex; gap: 10px; margin-top: 20px; }
    .social-link {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted);
      text-decoration: none;
      transition: all 0.2s;
      font-size: 0.85rem;
    }
    .social-link:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--navy);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      margin-top: 40px;
      padding-top: 22px;
      text-align: center;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.3);
    }
    .footer-bottom span { color: var(--gold); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── COUNTER ─── */
    .counter { display: inline-block; }

    /* ─── MISC ─── */
    .gold-line {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 0 auto 24px;
    }
    .text-gold { color: var(--gold); }
    img { max-width: 100%; }