  /* =========================
       Design Tokens / Theme
       ========================= */
    :root {
      --school-maroon: #0B3022;
      --brand-gold: #c5a059;
      --brand-cream: #e5dfcc;
      --text-main: #0B3022;
      --text-muted: rgba(11,48,34,0.72);
      --glass-white: rgba(255,255,255,0.92);
      --shadow: 0 10px 30px rgba(0,0,0,0.12);
      --ease: cubic-bezier(0.16, 1, 0.3, 1);

      --bg: #F6F2EA;
      --card: rgba(255, 251, 242, 0.78);
      --stroke: rgba(11,48,34,0.12);
      --focus: rgba(197,160,89,0.65);

      --radius-lg: 28px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --max: 1200px;

      /* Fluid spacing scale */
      --space-xs: clamp(0.5rem, 1.5vw, 0.75rem);
      --space-sm: clamp(0.75rem, 2vw, 1rem);
      --space-md: clamp(1rem, 3vw, 1.5rem);
      --space-lg: clamp(1.5rem, 4vw, 2.5rem);
      --space-xl: clamp(2.5rem, 6vw, 4.5rem);
    }

    /* =========================
       Reset & Base
       ========================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
      line-height: 1.45;
      color: var(--text-main);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img, video, iframe { max-width: 100%; height: auto; display: block; }
    button, input, select, textarea { font-family: inherit; }
    a { color: inherit; }

    :focus-visible {
      outline: 3px solid var(--focus);
      outline-offset: 2px;
      border-radius: 12px;
    }

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

    /* =========================
       Background Slider
       ========================= */
    .bg-slider { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
    .bg-slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity 1.5s ease-in-out;
    }
    .bg-slide.active { opacity: 1; }
    .bg-overlay {
      position: fixed; inset: 0; z-index: -1;
      background: rgba(0,0,0,0.35);
    }

    /* =========================
       Layout Helpers
       ========================= */
    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(1rem, 5vw, 6%);
      width: 100%;
    }
    .section { padding: var(--space-xl) 0; }
    .section-title {
      font-family: 'Playfair Display', 'Georgia', serif;
      font-size: clamp(1.4rem, 4.2vw, 2.2rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      margin-bottom: 0.6rem;
      color: var(--school-maroon);
    }
    .section-lead {
      color: rgba(11,48,34,0.78);
      font-size: clamp(0.9rem, 3.1vw, 1.07rem);
      line-height: 1.65;
      margin-top: 0.6rem;
      max-width: 70ch;
    }
    .divider {
      height: 2px; width: 90px; border-radius: 999px;
      background: linear-gradient(90deg, #1B4638, #5C8A72);
      margin-top: 14px;
    }

    /* Reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(40px) scale(0.98);
      filter: blur(3px);
      transition: all 0.9s var(--ease);
    }
    .reveal.active {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    /* =========================
       NAV — Animated border wrap
       ========================= */
    @property --angle {
      syntax: '<angle>';
      initial-value: 0deg;
      inherits: false;
    }
    @keyframes spin-border { to { --angle: 360deg; } }
    @keyframes nav-breathe {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
    @keyframes link-slide-in {
      from { opacity: 0; transform: translateY(-6px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes shimmer-sweep {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    .nav-border-wrap {
      position: fixed;
      top: 16px; left: 50%;
      transform: translateX(-50%);
      width: min(1220px, 93vw);
      border-radius: 54px;
      padding: 2px;
      background: conic-gradient(
        from var(--angle),
        #0B3022 0%, #c5a059 18%, #e8d49a 28%, #c5a059 38%,
        #0B3022 55%, #2C5E46 72%, #c5a059 85%, #0B3022 100%
      );
      animation: spin-border 5s linear infinite;
      z-index: 1000;
      transition: top 0.35s var(--ease), border-radius 0.35s var(--ease),
                  padding 0.35s var(--ease), width 0.35s var(--ease);
    }
    .nav-border-wrap.nav-shrink {
      top: 9px; border-radius: 40px; padding: 1.5px;
    }

    .nav-container {
      width: 100%;
      background: linear-gradient(
        105deg,
        rgba(8,32,20,0.97) 0%, rgba(11,48,34,0.97) 40%,
        rgba(14,56,38,0.97) 70%, rgba(9,36,24,0.97) 100%
      );
      background-size: 300% 300%;
      animation: nav-breathe 8s ease infinite;
      backdrop-filter: blur(22px) saturate(160%);
      -webkit-backdrop-filter: blur(22px) saturate(160%);
      border-radius: 52px;
      display: flex;
      flex-direction: column;
      padding: 0 22px;
      z-index: 1000;
      transition: all 0.35s var(--ease);
      box-shadow:
        inset 0 1px 0 rgba(197,160,89,0.18),
        inset 0 -1px 0 rgba(0,0,0,0.35),
        0 22px 55px rgba(0,0,0,0.45);
    }

    .nav-top-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      height: 76px;
      gap: 12px;
      transition: height 0.35s var(--ease);
    }
    .nav-border-wrap.nav-shrink .nav-top-row { height: 60px; }
    .nav-border-wrap.nav-shrink .nav-container { padding: 0 16px; border-radius: 38px; }

    /* Logo */
    .logo-wrapper { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
    .logo-shield img { width: clamp(48px, 7vw, 64px); filter: brightness(0) invert(1); }

    .brand-text h1 {
      font-size: clamp(0.72rem, 1.8vw, 1rem);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 800;
      min-height: 1.2rem;
      display: inline-block;
      background: linear-gradient(90deg, #e8d49a 0%, #c5a059 20%, #fff8e7 40%, #c5a059 60%, #e8d49a 80%, #c5a059 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: shimmer-sweep 4s linear infinite;
      white-space: nowrap;
    }
    #typing-text::after {
      content: '|';
      animation: blink 0.8s infinite;
      color: var(--brand-gold);
      margin-left: 2px;
    }
    .typing-done::after { display: none !important; }
    .sub-text {
      font-size: 0.58rem; font-style: italic;
      color: rgba(197,160,89,0.7); margin-top: -2px;
      letter-spacing: 3px; font-weight: 500;
      opacity: 0; transition: opacity 1.5s ease;
      display: inline-block; text-transform: uppercase; white-space: nowrap;
    }

    /* Desktop nav links */
    .nav-links {
      display: flex;
      gap: 4px;
      flex: 1;
      justify-content: center;
      align-items: center;
      margin: 0 8px;
      flex-wrap: nowrap;
    }
    .nav-divider {
      width: 1px; height: 32px;
      background: linear-gradient(180deg, transparent, rgba(197,160,89,0.6), transparent);
      opacity: 0; transform: scaleY(0);
      transition: all 0.8s var(--ease);
      margin: 0 10px; flex: 0 0 auto;
    }
    .divider-visible { opacity: 1; transform: scaleY(1); }

    .nav-links a {
      text-decoration: none;
      color: rgba(229,215,180,0.75);
      font-size: clamp(0.68rem, 1.1vw, 0.8rem);
      font-weight: 800;
      letter-spacing: 0.4px;
      padding: 9px 14px;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: all 0.25s ease;
      white-space: nowrap;
      position: relative;
    }
    .nav-links a:hover {
      color: #f5e9c4;
      background: rgba(197,160,89,0.12);
      border-color: rgba(197,160,89,0.28);
      text-shadow: 0 0 12px rgba(197,160,89,0.5);
      transform: translateY(-1px);
    }
    .nav-links a:nth-child(1) { animation: link-slide-in 0.5s 0.6s both; }
    .nav-links a:nth-child(2) { animation: link-slide-in 0.5s 0.75s both; }
    .nav-links a:nth-child(3) { animation: link-slide-in 0.5s 0.9s both; }
    .nav-links a:nth-child(4) { animation: link-slide-in 0.5s 1.05s both; }

    .cta-btn {
      background: linear-gradient(135deg, #c5a059 0%, #a07830 50%, #c5a059 100%);
      background-size: 200% auto;
      color: #0B3022;
      border: none;
      padding: 11px 20px;
      border-radius: 999px;
      font-weight: 950;
      font-size: 0.8rem;
      letter-spacing: 0.3px;
      cursor: pointer;
      box-shadow: 0 4px 18px rgba(197,160,89,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
      transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
      white-space: nowrap;
      animation: link-slide-in 0.5s 1.2s both;
      flex-shrink: 0;
    }
    .cta-btn:hover {
      background-position: right center;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(197,160,89,0.55);
    }
    .cta-btn:active { transform: translateY(-1px); }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px; height: 44px;
      border-radius: 14px;
      border: 1.5px solid rgba(197,160,89,0.35);
      background: rgba(197,160,89,0.08);
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
      flex-shrink: 0;
    }
    .hamburger:hover { background: rgba(197,160,89,0.18); border-color: rgba(197,160,89,0.55); transform: translateY(-1px); }
    .hamburger:active { transform: translateY(0); }
    .hamburger span {
      display: block; width: 20px; height: 2px;
      background: linear-gradient(90deg, #e8d49a, #c5a059);
      border-radius: 3px;
      transition: all 0.3s var(--ease);
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile dropdown */
    .mobile-menu {
      display: none;
      width: 100%;
      border-top: 1px solid rgba(197,160,89,0.2);
      padding: 0;
      flex-direction: column;
      gap: 4px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease), padding 0.3s ease;
    }
    .mobile-menu.open { max-height: 400px; padding: 14px 0 18px; }
    .mobile-menu a {
      text-decoration: none;
      color: rgba(229,215,180,0.85);
      font-size: 0.92rem;
      font-weight: 800;
      padding: 12px 16px;
      border-radius: 14px;
      transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    }
    .mobile-menu a:hover { background: rgba(197,160,89,0.12); color: #f5e9c4; transform: translateY(-1px); }
    .mobile-menu .mobile-cta {
      display: block;
      background: linear-gradient(135deg, #c5a059 0%, #a07830 100%);
      color: #0B3022 !important;
      text-align: center;
      margin-top: 8px;
      padding: 13px 16px;
      border-radius: 999px;
      font-weight: 950;
      font-size: 0.88rem;
      box-shadow: 0 4px 18px rgba(197,160,89,0.3);
      transition: transform 0.15s ease, box-shadow 0.2s ease;
    }
    .mobile-menu .mobile-cta:hover {
      background: linear-gradient(135deg, #d4b068 0%, #b08840 100%) !important;
      box-shadow: 0 6px 24px rgba(197,160,89,0.5);
      transform: translateY(-2px);
    }

    /* =========================
       Hero
       ========================= */
    .hero {
      padding-top: clamp(150px, 25vw, 240px);
      padding-bottom: clamp(50px, 8vw, 84px);
      text-align: center;
      color: #fff;
      position: relative;
      z-index: 1;
    }
    .hero::after {
      content: "";
      position: absolute;
      left: 50%; top: 90px;
      transform: translateX(-50%);
      width: min(560px, 90vw);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(197,160,89,0.7), transparent);
      opacity: 0.35;
      pointer-events: none;
    }
    .hero h2 {
      font-size: clamp(1.6rem, 6vw, 3.5rem);
      text-shadow: 2px 2px 10px rgba(0,0,0,0.45);
      padding: 0 clamp(0.5rem, 4vw, 14px);
      line-height: 1.15;
      font-weight: 900;
    }
    .motto-banner {
      display: inline-block;
      background: var(--school-maroon);
      padding: 10px 26px;
      margin-top: 18px;
      clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
      font-style: italic;
      font-weight: 550;
      animation: fadeIn 1.2s var(--ease);
      max-width: 92vw;
      border: 1px solid rgba(197,160,89,0.25);
      box-shadow: 0 10px 35px rgba(0,0,0,0.25);
      font-size: clamp(0.85rem, 2.5vw, 1rem);
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* =========================
       Welcome Grid
       ========================= */
    .section-container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 clamp(1rem, 5vw, 6%);
      position: relative;
      z-index: 1;
      margin-top: -34px;
    }
    .welcome-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(18px, 4vw, 56px);
      align-items: center;
      padding: clamp(20px, 4vw, 34px) 0 20px;
    }
    .welcome-content {
      background: rgba(255,255,255,0.25);
      border: 1px solid rgba(11,48,34,0.10);
      border-radius: var(--radius-lg);
      padding: clamp(14px, 3.5vw, 26px) clamp(12px, 3vw, 24px);
      backdrop-filter: blur(10px);
      box-shadow: 0 25px 70px rgba(0,0,0,0.08);
    }
    .welcome-content .kicker {
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--brand-gold);
      font-weight: 950;
      font-size: clamp(0.75rem, 2vw, 0.85rem);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .welcome-content h1 {
      color: #0B3022;
      font-size: clamp(1.4rem, 4.6vw, 2.4rem);
      margin-top: 10px;
      line-height: 1.15;
      font-weight: 950;
    }
    .welcome-content p {
      font-size: clamp(0.92rem, 2.5vw, 1.06rem);
      opacity: 0.85;
      margin-top: 10px;
      color: #0B3022;
      max-width: 60ch;
    }
    .primary-btn {
      background: linear-gradient(135deg, #004225 0%, #0B5A3A 50%, #004225 100%);
      color: #fff;
      border: none;
      padding: clamp(11px, 2vw, 14px) clamp(20px, 4vw, 28px);
      border-radius: 30px;
      font-weight: 950;
      font-size: clamp(0.85rem, 2vw, 1rem);
      cursor: pointer;
      margin-top: 18px;
      transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
      box-shadow: 0 14px 40px rgba(0,0,0,0.18);
      display: inline-flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
    }
    .primary-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 65px rgba(0,0,0,0.22);
      filter: brightness(1.05);
    }
    .primary-btn:active { transform: translateY(-1px); }

    .image-accent-frame {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 20px 20px 60px rgba(61,25,22,0.15);
      transform: rotate(-2deg);
      transition: transform 0.8s var(--ease);
      border: 1px solid rgba(197,160,89,0.20);
      background: rgba(255,255,255,0.2);
    }
    .image-accent-frame:hover { transform: rotate(0deg) scale(1.02); }
    .image-accent-frame img { width: 100%; height: auto; }

    /* =========================
       Stats
       ========================= */
    .stats-section {
      background: linear-gradient(135deg, var(--brand-cream) 0%, rgba(255,255,255,0.9) 100%);
      padding: clamp(40px, 8vw, 72px) 0;
      position: relative;
      z-index: 1;
    }
    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(1rem, 5vw, 20px);
      display: flex;
      gap: clamp(14px, 4vw, 60px);
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
    }
    .stat-item {
      text-align: center;
      flex: 1 1 180px;
      max-width: 260px;
      min-width: 160px;
      padding: 16px 12px;
      border-radius: 22px;
      background: rgba(255,255,255,0.55);
      border: 1px solid rgba(11,48,34,0.08);
      box-shadow: 0 16px 45px rgba(0,0,0,0.04);
    }
    .stat-number {
      font-size: clamp(1.4rem, 4.2vw, 2.1rem);
      font-weight: 950;
      color: var(--school-maroon);
      margin-bottom: 10px;
    }
    .stat-label {
      font-size: clamp(0.78rem, 2.1vw, 1.05rem);
      color: var(--school-maroon);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    /* =========================
       Features / Leadership
       ========================= */
    .features-section {
      background: linear-gradient(135deg, #FEFAF2 0%, #FAF3E6 100%);
      border-radius: 70px 70px 0 0;
      box-shadow: 0 -8px 30px rgba(11,48,34,0.06);
      padding: clamp(50px, 9vw, 92px) clamp(1rem, 5vw, 6%) clamp(40px, 7vw, 70px);
      position: relative;
      z-index: 1;
    }
    .section-heading { text-align: center; margin-bottom: clamp(36px, 6vw, 64px); }
    .section-heading h2 {
      font-family: 'Playfair Display', 'Georgia', serif;
      font-size: clamp(1.4rem, 4.2vw, 30px);
      font-weight: 950;
      background: linear-gradient(125deg, #1B4638 15%, #0B3022 70%, #2C5E46 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
      display: inline-block;
      padding-bottom: 12px;
      line-height: 1.15;
    }
    .section-heading h2::after {
      content: '';
      display: block;
      width: 80px; height: 3px;
      border-radius: 4px;
      background: linear-gradient(90deg, #1B4638, #5C8A72);
      margin: 12px auto 0;
      transition: width 0.4s ease;
    }
    .section-heading:hover h2::after { width: 130px; }

    .sub-lead {
      margin-top: 18px;
      display: inline-block;
      padding: 6px 24px;
      border-radius: 999px;
      background: rgba(27,70,56,0.08);
      border: 0.5px solid rgba(27,70,56,0.2);
      backdrop-filter: blur(4px);
      color: rgba(11,48,34,0.85);
      font-weight: 750;
      letter-spacing: -0.2px;
      font-size: clamp(0.85rem, 3.8vw, 1.15rem);
      text-align: center;
      max-width: 90vw;
    }

    .glass-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
      gap: clamp(14px, 3vw, 36px);
      align-items: stretch;
    }
    .glass-card {
      background: rgba(255,251,242,0.75);
      backdrop-filter: blur(18px) saturate(180%);
      -webkit-backdrop-filter: blur(18px) saturate(180%);
      border-radius: 44px;
      border: 1px solid rgba(92,138,114,0.25);
      padding: clamp(14px, 2.5vw, 22px);
      box-shadow: 0 20px 35px -15px rgba(0,0,0,0.08), 0 0 0 1px rgba(92,138,114,0.25) inset;
      display: flex;
      flex-direction: column;
      height: 100%;
      overflow: hidden;
      transition: all 0.5s var(--ease);
      position: relative;
    }
    .glass-card:hover {
      transform: translateY(-12px) scale(1.01);
      background: rgba(255,252,245,0.94);
      box-shadow: 0 35px 45px -18px rgba(11,48,34,0.35), 0 0 0 1px rgba(27,70,56,0.4) inset;
    }
    .glass-card h3 {
      font-family: 'Playfair Display', 'Georgia', serif;
      font-size: clamp(1.1rem, 4.3vw, 1.7rem);
      font-weight: 950;
      color: #1F4A3A;
      margin-bottom: 8px;
      letter-spacing: -0.3px;
      line-height: 1.25;
    }
    .member-name {
      font-weight: 900;
      font-size: 0.78rem;
      letter-spacing: 0.35px;
      text-transform: uppercase;
      background: rgba(27,70,56,0.12);
      color: #1B4638;
      padding: 6px 12px;
      border-radius: 999px;
      display: inline-block;
      margin-bottom: 14px;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .glass-card p {
      color: var(--text-muted);
      font-size: clamp(0.88rem, 2vw, 0.95rem);
      line-height: 1.55;
      margin-top: 6px;
      flex-grow: 1;
    }
    .team-image {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      object-position: center 30%;
      border-radius: clamp(20px, 4.5vw, 36px);
      margin-bottom: 18px;
      box-shadow: 0 18px 28px -12px rgba(11,48,34,0.25);
      background-color: #DDD4C4;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    }
    .glass-card:hover .team-image {
      transform: scale(1.02);
      box-shadow: 0 24px 32px -14px rgba(11,48,34,0.35);
    }

    /* =========================
       Virtual Assistance
       ========================= */
    .assist-section {
      padding: clamp(50px, 9vw, 92px) clamp(1rem, 5vw, 6%);
      background: linear-gradient(135deg, rgba(11,48,34,0.06) 0%, rgba(229,223,204,0.7) 100%);
      border-top: 1px solid rgba(11,48,34,0.10);
      position: relative;
      z-index: 1;
    }
    .assist-wrap {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      align-items: start;
    }
    .assist-title {
      font-family: 'Playfair Display', 'Georgia', serif;
      font-size: clamp(1.5rem, 5vw, 3rem);
      font-weight: 950;
      color: var(--school-maroon);
      margin-bottom: 14px;
      line-height: 1.1;
    }
    .assist-lead {
      color: rgba(11,48,34,0.82);
      font-size: clamp(0.9rem, 3.4vw, 1.05rem);
      line-height: 1.7;
      margin-bottom: 18px;
    }
    .assist-tile-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 18px;
    }
    .assist-tile {
      background: rgba(255,255,255,0.68);
      border: 1px solid rgba(11,48,34,0.12);
      border-radius: 18px;
      padding: 14px 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      cursor: pointer;
      user-select: none;
      text-align: left;
      position: relative;
    }
    .assist-tile::after {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(197,160,89,0.35), rgba(11,48,34,0.0));
      opacity: 0;
      transition: opacity 0.25s var(--ease);
      pointer-events: none;
    }
    .assist-tile:hover { transform: translateY(-3px); box-shadow: 0 16px 35px rgba(0,0,0,0.10); background: rgba(255,255,255,0.85); }
    .assist-tile:hover::after { opacity: 1; }
    .assist-tile .t {
      font-weight: 950;
      color: #0F3A2B;
      font-size: clamp(0.88rem, 2.2vw, 1rem);
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .assist-tile .t i { color: var(--brand-gold); }
    .assist-tile .d { color: rgba(11,48,34,0.72); font-size: clamp(0.78rem, 2vw, 0.88rem); line-height: 1.3; }

    /* =========================
       Chat FAB & Modal
       ========================= */
    .fab-assistant {
      position: fixed;
      right: clamp(12px, 3vw, 18px);
      bottom: clamp(12px, 3vw, 18px);
      z-index: 2000;
      width: clamp(60px, 10vw, 70px);
      height: clamp(60px, 10vw, 70px);
      border-radius: 999px;
      background: rgba(11,48,34,0.96);
      border: 3px solid rgba(197,160,89,0.95);
      box-shadow: 0 18px 45px rgba(0,0,0,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .fab-assistant:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 24px 60px rgba(0,0,0,0.32); }
    .fab-assistant:active { transform: translateY(-1px) scale(0.99); }
    .fab-assistant svg {
      width: clamp(24px, 4vw, 30px);
      height: clamp(24px, 4vw, 30px);
      display: block;
      color: #F5F0E4;
      filter: drop-shadow(0 1px 0 rgba(0,0,0,0.15));
    }

    .chat-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 3000;
      display: none;
      align-items: flex-end;
      justify-content: center;
      padding: 16px;
    }
    .chat-overlay.open { display: flex; }

    .chat-modal {
      width: min(430px, 100%);
      height: min(720px, 85vh);
      border-radius: 26px;
      overflow: hidden;
      background: transparent;
      box-shadow: 0 35px 90px rgba(0,0,0,0.45);
      transform: translateY(12px);
      opacity: 0;
      transition: all 0.22s ease;
    }
    .chat-overlay.open .chat-modal { transform: translateY(0); opacity: 1; }

    .chat-surface {
      height: 100%;
      background: #fff7e9;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex;
      flex-direction: column;
      border-radius: 26px;
      overflow: hidden;
    }
    .chat-topbar {
      background: linear-gradient(135deg, #0B3022 0%, #0F3A2B 55%, #1B4638 100%);
      color: #fff;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .chat-topbar .title {
      display: flex; align-items: center; gap: 10px;
      font-weight: 950; letter-spacing: -0.2px; min-width: 0;
    }
    .chat-topbar .title .spark { font-size: 18px; }
    .chat-close {
      width: 38px; height: 38px;
      border-radius: 12px; border: 0; cursor: pointer;
      background: rgba(255,255,255,0.10);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      transition: transform 0.15s ease, background 0.2s ease;
      flex-shrink: 0;
    }
    .chat-close:hover { transform: translateY(-1px); background: rgba(255,255,255,0.16); }
    .chat-body { flex: 1; overflow: auto; padding: 16px 14px; background: #fff7e9; }
    .bubble { display: flex; margin: 10px 0; }
    .bubble .inner {
      max-width: 95%;
      padding: 14px;
      border-radius: 16px;
      line-height: 1.55;
      font-size: clamp(0.88rem, 2.5vw, 1rem);
      border: 1px solid rgba(11,48,34,0.10);
      background: #ffffff;
      color: #3a3a3a;
      word-break: break-word;
    }
    .bubble.assistant { justify-content: flex-start; }
    .bubble.user { justify-content: flex-end; }
    .bubble.user .inner { background: #cfeee0; border-color: rgba(11,48,34,0.12); }
    .chat-footer {
      padding: 12px 12px 14px;
      background: rgba(255,255,255,0.85);
      border-top: 1px solid rgba(11,48,34,0.12);
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .chat-input {
      flex: 1;
      border: 1px solid rgba(11,48,34,0.18);
      background: rgba(255,255,255,0.95);
      border-radius: 16px;
      padding: 12px;
      font-size: clamp(0.88rem, 2.5vw, 0.98rem);
      outline: none;
      min-width: 0;
    }
    .send-btn {
      width: 52px; height: 52px;
      border-radius: 16px; border: 0;
      background: #caa34f; color: #fff;
      cursor: pointer;
      transition: transform 0.15s ease, background 0.2s ease;
      font-weight: 950;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 10px 25px rgba(202,163,79,0.25);
      flex-shrink: 0;
    }
    .send-btn:hover { transform: translateY(-2px); background: #b88f37; }

    /* =========================
       News
       ========================= */
    .news-page {
      padding: clamp(40px, 7vw, 70px) clamp(1rem, 5vw, 6%);
      background: #e9e4d6;
      border-top: 1px solid rgba(11,48,34,0.10);
      position: relative;
      z-index: 1;
    }
    .news-page header { text-align: center; margin-bottom: 34px; }
    .news-page header h1 { font-size: clamp(1.4rem, 4.5vw, 2.5rem); font-weight: 950; }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
      gap: 18px;
    }
    .card {
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(11,48,34,0.12);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 12px 35px rgba(0,0,0,0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(0,0,0,0.10); }
    .card-image { width: 100%; height: clamp(140px, 22vw, 180px); object-fit: cover; }
    .card-content { padding: clamp(14px, 3vw, 18px); }
    .date {
      font-size: 12px; font-weight: 900;
      color: rgba(11,48,34,0.65);
      text-transform: uppercase; letter-spacing: 1px;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .date::before {
      content: ""; width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(197,160,89,0.85);
      box-shadow: 0 0 0 3px rgba(197,160,89,0.18);
      display: inline-block;
    }
    .card h2 { font-size: clamp(1rem, 3vw, 1.15rem); margin: 10px 0 8px; font-weight: 950; }
    .card p { color: rgba(11,48,34,0.75); font-size: clamp(0.85rem, 2.2vw, 0.95rem); line-height: 1.5; }
    .btn-more {
      display: inline-block; margin-top: 14px;
      text-decoration: none; color: #0B5A3A; font-weight: 900;
      transition: transform 0.15s var(--ease), opacity 0.15s var(--ease);
    }
    .btn-more:hover { text-decoration: underline; transform: translateY(-1px); }

    /* =========================
       Grade Calculator
       ========================= */
    .crd {
      position: relative;
      z-index: 1;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      padding: clamp(1.2rem, 4vw, 2rem);
      border-radius: 20px;
      border: 1px solid rgba(197,160,89,0.35);
      box-shadow: 0 8px 32px 0 rgba(0,0,0,0.3);
      width: calc(100% - 2rem);
      max-width: 560px;
      text-align: center;
      color: #ffffff;
      margin: 38px auto 10px;
    }
    .crd h2 {
      color: #c5a059; margin-bottom: 1.5rem;
      font-weight: 950; letter-spacing: 1px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.2);
      font-size: clamp(1.2rem, 4vw, 1.9rem);
    }
    .form-group { margin-bottom: 1.2rem; text-align: left; }
    label {
      display: block; font-weight: 800;
      margin-bottom: 8px; color: #e0f2f1; font-size: 0.9rem;
    }
    select, input[type="number"], input[type="text"], input[type="email"], textarea {
      width: 100%;
      padding: clamp(10px, 2vw, 14px);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      font-size: clamp(0.88rem, 2.2vw, 1rem);
      box-sizing: border-box;
      color: #ffffff;
      transition: all 0.25s ease;
    }
    input::placeholder { color: rgba(255,255,255,0.6); }
    select:focus, input:focus {
      outline: none;
      background: rgba(255,255,255,0.2);
      border-color: rgba(197,160,89,0.8);
      box-shadow: 0 0 10px rgba(123,237,159,0.3);
    }
    select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 1em;
      padding-right: 44px;
    }
    #result-container {
      margin-top: 2rem; padding: 1.2rem 1rem;
      border-radius: 15px;
      background: rgba(0,0,0,0.18);
      display: none;
      border-left: 5px solid rgba(197,160,89,0.85);
      box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
      text-align: left;
    }
    .grade-display {
      font-size: clamp(2rem, 7vw, 3.5rem);
      font-weight: 950; color: #c5a059;
      margin: 10px 0 6px;
      text-shadow: 0 0 15px rgba(123,237,159,0.5);
      line-height: 1; text-align: center;
    }
    .status-text { color: #b2dfdb; font-style: italic; text-align: center; }

    /* =========================
       About / Services
       ========================= */
    .about-section {
      background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(229,223,204,0.55));
      border-top: 1px solid rgba(11,48,34,0.08);
      position: relative;
      z-index: 1;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 26px;
      align-items: start;
    }
    .panel {
      background: rgba(255,255,255,0.6);
      border: 1px solid rgba(11,48,34,0.10);
      border-radius: var(--radius-lg);
      padding: clamp(16px, 3.5vw, 22px);
      box-shadow: 0 18px 55px rgba(0,0,0,0.05);
    }
    .about-points { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 16px; }
    .point {
      display: flex; gap: 12px; align-items: flex-start;
      padding: 14px; border-radius: 18px;
      border: 1px solid rgba(11,48,34,0.10);
      background: rgba(255,255,255,0.65);
      transition: transform 0.18s var(--ease), background 0.2s var(--ease);
    }
    .point:hover { transform: translateY(-2px); background: rgba(255,255,255,0.85); }
    .point i { color: var(--brand-gold); font-size: 18px; margin-top: 2px; }
    .point b { font-weight: 950; color: var(--school-maroon); display: block; margin-bottom: 4px; }
    .point span { color: rgba(11,48,34,0.78); font-size: 0.95rem; line-height: 1.5; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 18px;
    }
    .service-card {
      border-radius: 22px;
      padding: clamp(12px, 2.5vw, 16px);
      border: 1px solid rgba(11,48,34,0.10);
      background: rgba(255,255,255,0.65);
      box-shadow: 0 14px 35px rgba(0,0,0,0.04);
      transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
    }
    .service-card:hover {
      transform: translateY(-3px);
      background: rgba(255,255,255,0.86);
      box-shadow: 0 20px 55px rgba(0,0,0,0.08);
    }
    .service-card .icon {
      width: 44px; height: 44px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(197,160,89,0.16);
      border: 1px solid rgba(197,160,89,0.28);
      color: var(--school-maroon); margin-bottom: 12px;
    }
    .service-card h3 { font-weight: 950; font-size: clamp(0.9rem, 2.5vw, 1.05rem); margin-bottom: 6px; color: var(--school-maroon); }
    .service-card p { color: rgba(11,48,34,0.78); font-size: clamp(0.82rem, 2vw, 0.95rem); line-height: 1.6; }

    /* =========================
       Testimonials
       ========================= */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
      gap: 14px;
      margin-top: 18px;
    }
    .quote-card {
      border-radius: 26px;
      padding: clamp(14px, 3vw, 18px);
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(11,48,34,0.10);
      box-shadow: 0 18px 55px rgba(0,0,0,0.04);
      transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease);
    }
    .quote-card:hover { transform: translateY(-3px); box-shadow: 0 25px 80px rgba(0,0,0,0.08); }
    .stars { color: rgba(197,160,89,0.95); letter-spacing: 2px; font-weight: 900; margin-bottom: 10px; font-size: 0.95rem; }
    .quote { color: rgba(11,48,34,0.82); font-size: clamp(0.88rem, 2.2vw, 0.98rem); line-height: 1.65; margin-bottom: 14px; }
    .quote-person { display: flex; align-items: center; gap: 12px; }
    .avatar {
      width: 44px; height: 44px; border-radius: 16px;
      background: rgba(197,160,89,0.18);
      border: 1px solid rgba(197,160,89,0.28);
      display: flex; align-items: center; justify-content: center;
      font-weight: 950; color: var(--school-maroon);
      flex-shrink: 0;
    }
    .quote-person b { font-weight: 950; display: block; color: var(--school-maroon); }
    .quote-person span { color: rgba(11,48,34,0.72); font-size: 0.9rem; }

    /* =========================
       Contact
       ========================= */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
      margin-top: 18px;
    }
    .form { display: grid; gap: 12px; }
    .field { display: grid; gap: 8px; }
    .field label { font-weight: 900; color: rgba(11,48,34,0.9); margin: 0; font-size: 0.92rem; }
    .field input, .field textarea, .field select {
      width: 100%;
      padding: clamp(10px, 2vw, 12px);
      border-radius: 14px;
      border: 1px solid rgba(11,48,34,0.14);
      background: rgba(255,255,255,0.8);
      color: var(--text-main);
      transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
      font-size: clamp(0.88rem, 2.2vw, 1rem);
    }
    .field textarea { min-height: 120px; resize: vertical; }
    .field input::placeholder, .field textarea::placeholder { color: rgba(11,48,34,0.55); }
    .field input:focus, .field textarea:focus, .field select:focus {
      outline: none;
      border-color: rgba(197,160,89,0.85);
      box-shadow: 0 0 0 4px rgba(197,160,89,0.22);
      background: rgba(255,255,255,0.95);
    }
    .submit-btn {
      border: 0; border-radius: 16px;
      padding: 13px 16px; font-weight: 950; cursor: pointer;
      background: linear-gradient(135deg, #c5a059 0%, #a07830 55%, #c5a059 100%);
      color: var(--school-maroon);
      transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease), filter 0.2s var(--ease);
      box-shadow: 0 14px 40px rgba(197,160,89,0.25);
      display: inline-flex; gap: 10px;
      align-items: center; justify-content: center;
      font-size: clamp(0.9rem, 2.2vw, 1rem);
    }
    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 70px rgba(197,160,89,0.35);
      filter: brightness(1.04);
    }
    .submit-btn:active { transform: translateY(-1px); }
    .contact-details { display: grid; gap: 12px; }
    .detail {
      border-radius: 18px;
      padding: clamp(12px, 2.5vw, 14px);
      background: rgba(255,255,255,0.65);
      border: 1px solid rgba(11,48,34,0.10);
      display: flex; gap: 12px; align-items: flex-start;
      transition: transform 0.18s var(--ease), background 0.2s var(--ease);
    }
    .detail:hover { transform: translateY(-2px); background: rgba(255,255,255,0.88); }
    .detail i {
      width: 40px; height: 40px; border-radius: 16px;
      background: rgba(197,160,89,0.16);
      border: 1px solid rgba(197,160,89,0.28);
      display: flex; align-items: center; justify-content: center;
      color: var(--school-maroon); flex-shrink: 0; margin-top: 2px;
    }
    .detail b { display: block; font-weight: 950; color: var(--school-maroon); margin-bottom: 4px; }
    .detail span, .detail a {
      color: rgba(11,48,34,0.78);
      font-size: clamp(0.85rem, 2.2vw, 0.95rem);
      text-decoration: none; line-height: 1.5;
    }
    .detail a:hover { text-decoration: underline; color: var(--school-maroon); }

    /* =========================
       Map & Footer
       ========================= */
    .location-footer-section {
      padding: clamp(40px, 7vw, 70px) clamp(1rem, 5vw, 6%);
      background: rgba(2,67,6,0.352);
      color: #fff;
      position: relative;
      z-index: 1;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .map-wrapper { max-width: 1200px; margin: 0 auto; }
    .map-header { text-align: center; margin-bottom: 22px; }
    .map-header h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); color: var(--brand-cream); margin-bottom: 8px; }
    .map-header p { color: rgba(255,255,255,0.85); font-size: clamp(0.88rem, 2.2vw, 1rem); }
    .map-glass {
      width: 100%;
      height: clamp(220px, 40vw, 380px);
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.25);
      box-shadow: 0 25px 70px rgba(0,0,0,0.6);
    }
    .map-glass iframe { width: 100%; height: 100%; border: 0; }

    .site-footer {
      padding-top: clamp(40px, 6vw, 60px);
      border-top: 1px solid rgba(255,255,255,0.15);
      background: rgba(2,67,6,0.352);
      position: relative;
      z-index: 1;
      color: #fff;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
      gap: clamp(24px, 4vw, 40px);
      padding: 0 clamp(1rem, 5vw, 6%);
      align-items: start;
    }
    .footer-col h3, .footer-col h4 {
      color: var(--brand-cream); margin-bottom: 15px; font-weight: 950;
      font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }
    .footer-col p, .footer-col a {
      color: rgba(255,255,255,0.85);
      font-size: clamp(0.85rem, 2.2vw, 0.95rem);
      line-height: 1.6; text-decoration: none;
      display: block; margin-bottom: 8px;
      word-break: break-word;
    }
    .footer-col a:hover { color: var(--brand-gold); text-decoration: underline; }
    .footer-badge {
      margin-top: 12px;
      display: inline-block;
      padding: 8px 14px;
      background: rgba(197,160,89,0.15);
      border: 1px solid rgba(197,160,89,0.35);
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 900;
    }
    .social-row { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
    .social-btn {
      width: 42px; height: 42px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(197,160,89,0.14);
      border: 1px solid rgba(197,160,89,0.28);
      color: #fff;
      transition: transform 0.18s var(--ease), background 0.2s var(--ease);
      text-decoration: none;
    }
    .social-btn:hover {
      transform: translateY(-2px);
      background: rgba(197,160,89,0.22);
      border-color: rgba(197,160,89,0.42);
    }
    .footer-bottom {
      text-align: center;
      margin-top: 50px;
      color: rgba(255,255,255,0.6);
      font-size: clamp(0.78rem, 2vw, 0.9rem);
      padding: 0 clamp(1rem, 5vw, 6%) clamp(24px, 4vw, 40px);
    }

    /* =========================
       RESPONSIVE BREAKPOINTS
       (mobile-first enhancement)
       ========================= */

    /* ---- Small tablets 480px+ ---- */
    @media (min-width: 480px) {
      .assist-tile-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ---- Tablets 640px+ ---- */
    @media (min-width: 640px) {
      .welcome-grid { grid-template-columns: 1.2fr 0.8fr; }
      .about-grid { grid-template-columns: 1.1fr 0.9fr; }
      .contact-grid { grid-template-columns: 1fr 0.9fr; }
      .assist-wrap { grid-template-columns: 1.05fr 0.95fr; }
    }

    /* ---- Medium tablets / small desktops 768px+ ---- */
    @media (min-width: 768px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-container { flex-wrap: nowrap; }
      .crd { width: 100%; }
    }

    /* ---- Large screens 980px+ ---- */
    @media (min-width: 980px) {
      .nav-links { display: flex !important; }
      .cta-btn { display: block; }
      .hamburger { display: none; }
      .mobile-menu { display: none !important; }
    }

    /* ---- Max desktop 1200px+ ---- */
    @media (min-width: 1200px) {
      .glass-grid { grid-template-columns: repeat(4, 1fr); }
    }

    /* =========================
       NAV RESPONSIVE OVERRIDES
       ========================= */

    /* Hide desktop nav on small screens */
    @media (max-width: 979px) {
      .nav-links { display: none; }
      .nav-divider { display: none; }
      .cta-btn { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }
    }

    @media (max-width: 720px) {
      .nav-border-wrap {
        top: 10px; border-radius: 26px;
        width: min(98vw, 98vw);
      }
      .nav-border-wrap.nav-shrink { top: 7px; border-radius: 22px; }
      .nav-container { border-radius: 24px; padding: 0 14px; min-height: 62px; }
      .nav-border-wrap.nav-shrink .nav-container { border-radius: 20px; }
      .nav-top-row { height: 62px !important; }
      .features-section { border-radius: 46px 46px 0 0; }
    }

    /* =========================
       Touch target sizes (WCAG)
       ========================= */
    @media (hover: none) and (pointer: coarse) {
      .assist-tile, .point, .service-card,
      .nav-links a, .cta-btn, .primary-btn,
      .submit-btn, .send-btn, .social-btn { min-height: 44px; }
      .glass-card:hover { transform: none; }
      .image-accent-frame:hover { transform: rotate(-2deg); }
    }



