    :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);
      --accent-gold: #c5a059;
      --bottle-green-dark: #082014;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   
    html { scroll-behavior: smooth; }
   
    body {
      background: #F6F2EA;
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
      line-height: 1.5;
      color: var(--text-main);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* 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.45);
    }

    /* Animations */
    @keyframes nav-breathe {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
   
    @keyframes shimmer-sweep {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
   
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Navigation */
    .nav-container {
      position: fixed;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      width: min(1200px, calc(100vw - 24px));
      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: 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 24px;
      z-index: 1000;
      transition: all 0.4s var(--ease);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
      border: 1px solid rgba(197, 160, 89, 0.2);
    }
   
    .nav-container.nav-shrink {
      top: 8px;
      padding: 8px 20px;
      width: min(1100px, calc(100vw - 16px));
      border-radius: 40px;
    }

    .logo-wrapper {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
   
    .logo-shield {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--brand-gold), #8a6d3b);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #fff;
      font-size: 0.9rem;
    }
   
    .logo-shield svg {
      width: 24px;
      height: 24px;
      fill: white;
    }

    .brand-text h1 {
      font-size: clamp(0.85rem, 2.5vw, 1.1rem);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 800;
      background: linear-gradient(90deg, #e8d49a, #c5a059, #fff8e7, #c5a059);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: shimmer-sweep 4s linear infinite;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      gap: 6px;
      align-items: center;
    }
   
    .nav-links a {
      text-decoration: none;
      color: rgba(229,215,180,0.8);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.8px;
      padding: 8px 14px;
      border-radius: 999px;
      transition: all 0.3s ease;
      white-space: nowrap;
    }
   
    .nav-links a:hover {
      color: #fff;
      background: rgba(197,160,89,0.15);
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 36px;
      height: 36px;
      background: rgba(197,160,89,0.15);
      border: none;
      border-radius: 10px;
      cursor: pointer;
      padding: 0;
      transition: background 0.3s ease;
    }
   
    .mobile-menu-toggle:hover {
      background: rgba(197,160,89,0.25);
    }
   
    .hamburger-line {
      width: 18px;
      height: 2px;
      background: var(--brand-gold);
      border-radius: 2px;
      transition: all 0.3s ease;
    }
   
    .hamburger-line:nth-child(1) { margin-bottom: 4px; }
    .hamburger-line:nth-child(3) { margin-top: 4px; }
   
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
      transform: rotate(45deg) translateY(6px);
    }
   
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
      opacity: 0;
    }
   
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
      transform: rotate(-45deg) translateY(-6px);
    }

    /* Mobile Navigation Panel */
    .mobile-nav-panel {
      position: fixed;
      z-index: 999;
      top: calc(0.95rem + 5rem + 0.75rem);
      left: 50%;
      transform: translateX(-50%) translateY(-10px);
      width: min(92vw, 680px);
      background: linear-gradient(
        105deg,
        rgba(8, 32, 20, 0.95) 0%,
        rgba(11, 48, 34, 0.95) 40%,
        rgba(14, 56, 38, 0.95) 70%,
        rgba(9, 36, 24, 0.95) 100%
      );
      border: 1px solid rgba(197, 160, 89, 0.2);
      border-radius: 18px;
      backdrop-filter: blur(22px) saturate(160%);
      -webkit-backdrop-filter: blur(22px) saturate(160%);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
      padding: 0.75rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }
   
    .mobile-nav-panel.active {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
   
    .mobile-nav-panel a {
      display: block;
      text-decoration: none;
      font-weight: 700;
      color: rgba(229, 215, 180, 0.8);
      font-size: 0.75rem;
      letter-spacing: 0.8px;
      padding: 0.85rem 0.85rem;
      border-radius: 12px;
      transition: background 0.3s ease, color 0.3s ease;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
   
    .mobile-nav-panel a:hover {
      color: #fff;
      background: rgba(197, 160, 89, 0.15);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 120px 20px 80px;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      max-width: 800px;
    }

    .hero h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 10vw, 5rem);
      color: #fff;
      text-shadow: 0 10px 30px rgba(0,0,0,0.5);
      margin-bottom: 16px;
      line-height: 1.1;
      font-weight: 700;
    }

    .motto-banner {
      display: inline-block;
      background: var(--school-maroon);
      color: var(--brand-gold);
      padding: 14px 32px;
      clip-path: polygon(6% 0%, 94% 0%, 100% 50%, 94% 100%, 6% 100%, 0% 50%);
      font-style: italic;
      margin-top: 20px;
      font-weight: 700;
      letter-spacing: 1px;
      font-size: clamp(0.75rem, 2vw, 0.9rem);
    }

    /* Content Wrapper */
    .content-wrapper {
      background-color: #fff;
      position: relative;
      z-index: 2;
      padding: 60px 0;
      border-radius: 40px 40px 0 0;
      margin-top: -40px;
      box-shadow: 0 -20px 60px rgba(0,0,0,0.1);
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
    }

    /* About Section */
    .about-section {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
      padding: 40px 0;
    }
   
    @media (min-width: 900px) {
      .about-section {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        padding: 60px 0;
      }
    }

    .about-text {
      text-align: center;
    }
    .about-text .label {
      color: var(--brand-gold);
      font-weight: 900;
      letter-spacing: 3px;
      font-size: 0.75rem;
      text-transform: uppercase;
      display: block;
      margin-bottom: 12px;
    }

    .about-text h2 {
      font-family: 'Playfair Display', serif;
      color: var(--school-maroon);
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .about-text p {
      color: var(--school-maroon);
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      line-height: 1.8;
      opacity: 0.85;
    }

    .about-image {
      border-radius: 24px;
      margin-right: 50px;
      margin-left: 50px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    }
   
    .about-image img {
      width: 100%;
      display: block;
      transition: transform 0.5s var(--ease);
    }
   
    .about-image:hover img {
      transform: scale(1.05);
    }

    /* Enrollment Section */
    .enrollment-section {
      padding: 60px 0;
      background: #fff;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
    }

    .section-header .label {
      color: var(--brand-gold);
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-size: 0.8rem;
      display: block;
      margin-bottom: 10px;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      color: var(--school-maroon);
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      margin-bottom: 12px;
    }

    .section-header p {
      opacity: 0.7;
      font-size: 0.95rem;
    }

    .requirements-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: 24px;
    }

    .req-card {
      background: #fdfbf7;
      padding: clamp(30px, 5vw, 45px) clamp(24px, 4vw, 35px);
      border-radius: 28px;
      border: 1px solid rgba(11, 48, 34, 0.08);
      transition: all 0.5s var(--ease);
      position: relative;
    }
   
    .req-card:hover {
      transform: translateY(-8px);
      border-color: var(--brand-gold);
      box-shadow: 0 25px 50px rgba(11, 48, 34, 0.1);
    }

    .card-icon {
      font-size: 1rem;
      font-weight: 900;
      color: var(--brand-gold);
      margin-bottom: 16px;
      display: block;
      opacity: 0.6;
    }

    .req-card h3 {
      color: var(--school-maroon);
      margin-bottom: 20px;
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.1rem, 3vw, 1.3rem);
    }

    .req-list {
      list-style: none;
      padding: 0;
    }
   
    .req-list li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 12px;
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      color: var(--school-maroon);
      opacity: 0.85;
      line-height: 1.5;
    }
   
    .req-list li::before {
      content: "◆";
      position: absolute;
      left: 0;
      color: var(--brand-gold);
      font-size: 0.7rem;
      top: 3px;
    }

    /* CTA Section */
    .cta-section {
      text-align: center;
      margin-top: 60px;
      padding: 40px 0;
    }

    .cta-btn {
      background: linear-gradient(135deg, #c5a059 0%, #a07830 100%);
      color: #fff;
      border: none;
      padding: 18px 48px;
      border-radius: 50px;
      font-weight: 800;
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(197,160,89,0.3);
      transition: all 0.3s var(--ease);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-family: inherit;
    }
   
    .cta-btn:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 15px 35px rgba(197,160,89,0.45);
    }
   
    .cta-btn:active {
      transform: translateY(-1px) scale(0.98);
    }

    /* Inquiry Bar */
    .inquiry-bar {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: min(520px, calc(100vw - 32px));
      background: var(--school-maroon);
      padding: 14px 24px;
      border-radius: 100px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
      z-index: 100;
      text-decoration: none;
      color: white;
      transition: all 0.3s ease;
      border: 1px solid rgba(197,160,89,0.2);
    }
   
    .inquiry-bar:hover {
      transform: translateX(-50%) translateY(-4px);
      box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    }
   
    .inquiry-bar h4 {
      margin: 0;
      font-size: clamp(0.7rem, 2vw, 0.85rem);
      letter-spacing: 1px;
      white-space: nowrap;
    }
   
    .inquiry-bar p {
      margin: 0;
      font-size: clamp(0.65rem, 1.5vw, 0.75rem);
      opacity: 0.7;
    }
   
    .phone-btn {
      background: var(--brand-gold);
      color: #fff;
      padding: 10px 18px;
      border-radius: 50px;
      font-weight: 800;
      font-size: clamp(0.7rem, 1.5vw, 0.8rem);
      white-space: nowrap;
    }

    /* Modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: 0.4s;
      padding: 16px;
      overflow-y: auto;
    }
   
    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .portal-card {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 32px;
      padding: clamp(24px, 5vw, 40px);
      width: 100%;
      max-width: 540px;
      position: relative;
      transform: translateY(40px) scale(0.95);
      transition: 0.5s var(--ease);
      max-height: 85vh;
      overflow-y: auto;
      box-shadow: 0 25px 60px rgba(0,0,0,0.25);
      margin: auto;
    }
   
    .modal-overlay.active .portal-card {
      transform: translateY(0) scale(1);
    }

    #progress {
      position: absolute;
      top: 0;
      left: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--brand-gold), #e8d49a);
      width: 0%;
      transition: 0.4s;
      border-radius: 32px 32px 0 0;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #f6f8f7;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
      z-index: 10;
    }
   
    .close-btn:hover {
      background: #eee;
      color: #c44;
    }

    .form-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 4vw, 2rem);
      margin-bottom: 24px;
      text-align: center;
      color: var(--school-maroon);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
   
    @media (min-width: 500px) {
      .form-grid {
        grid-template-columns: 1fr 1fr;
      }
      .form-grid .full {
        grid-column: span 2;
      }
    }

    .input-box label {
      display: block;
      font-size: 0.65rem;
      color: var(--school-maroon);
      text-transform: uppercase;
      margin-bottom: 6px;
      font-weight: 800;
      letter-spacing: 0.5px;
      opacity: 0.7;
    }

    .input-box input,
    .input-box select {
      width: 100%;
      padding: 14px 16px;
      background: #f6f8f7;
      border: 2px solid rgba(11, 48, 34, 0.15);
      border-radius: 12px;
      color: var(--school-maroon);
      font-size: 1rem;
      transition: 0.3s;
      outline: none;
      font-family: inherit;
    }
   
    .input-box input:focus,
    .input-box select:focus {
      border-color: var(--brand-gold);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
    }
   
    .input-box input::placeholder {
      color: rgba(11,48,34,0.4);
    }

    .submit-btn {
      width: 100%;
      padding: 18px;
      margin-top: 24px;
      background: var(--school-maroon);
      color: var(--brand-gold);
      border: none;
      border-radius: 12px;
      font-weight: 800;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.3s;
      font-family: inherit;
    }
   
    .submit-btn:hover {
      background: #0e3d2b;
      transform: translateY(-2px);
    }

    /* Success View */
    .success-view {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }
   
    .success-view.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }
   
    .success-view .checkmark {
      font-size: clamp(3rem, 10vw, 4rem);
      color: var(--brand-gold);
      margin-bottom: 20px;
    }
   
    .success-view h2 {
      color: var(--school-maroon);
      font-family: 'Playfair Display', serif;
    }
   
    .success-view p {
      margin-top: 15px;
      color: #666;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    /* Footer */
    .site-footer {
      background: var(--school-maroon);
      padding: 60px 0 30px;
      color: white;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
      gap: 40px;
    }

    .footer-col h3,
    .footer-col h4 {
      color: var(--brand-gold);
      margin-bottom: 16px;
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.1rem, 3vw, 1.3rem);
    }

    .footer-col p,
    .footer-col a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      line-height: 1.6;
    }
   
    .footer-col a:hover {
      color: var(--brand-gold);
    }

    .footer-badge {
      background: rgba(197,160,89,0.1);
      border: 1px solid var(--brand-gold);
      padding: 8px 16px;
      border-radius: 50px;
      display: inline-block;
      font-size: 0.75rem;
      color: var(--brand-gold);
      margin-top: 12px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 50px;
      padding-top: 24px;
      text-align: center;
      font-size: clamp(0.75rem, 2vw, 0.85rem);
      color: rgba(255,255,255,0.5);
    }

    /* Reveal Animation */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s var(--ease);
    }
   
    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive Styles */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .mobile-menu-toggle { display: flex; }
      .mobile-nav-panel { display: block; }
     
      .hero {
        min-height: calc(100vh - 70px);
        padding-top: 100px;
      }
     
      .content-wrapper {
        border-radius: 32px 32px 0 0;
        margin-top: -32px;
        padding: 50px 0;
      }
    }

    @media (max-width: 600px) {
      .nav-container {
        top: 12px;
        padding: 8px 16px;
        border-radius: 40px;
      }
     
      .logo-shield {
        width: 36px;
        height: 36px;
      }
     
      .brand-text h1 {
        font-size: 0.8rem;
        letter-spacing: 1px;
      }
     
      .mobile-nav-panel {
        top: 60px;
      }
     
      .inquiry-bar {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        border-radius: 24px;
        bottom: 16px;
      }
     
      .phone-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
      }
     
      .portal-card {
        border-radius: 24px;
      }
     
      .close-btn {
        top: 16px;
        right: 16px;
      }

      .modal-overlay {
        padding: 12px;
        align-items: flex-end;
        background: rgba(0, 0, 0, 0.25);
      }
     
      .portal-card {
        max-height: 80vh;
        border-radius: 24px 24px 16px 16px;
        margin-bottom: 8px;
      }
    }

    @media (max-width: 400px) {
      .hero { padding: 90px 16px 60px; }
      .content-wrapper { padding: 40px 0; }
      .section-container { padding: 0 4%; }
      .req-card { padding: 24px 20px; }
      .portal-card { padding: 20px 16px; }
      .input-box input,
      .input-box select {
        padding: 12px 14px;
        font-size: 0.95rem;
      }
    }

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