:root {
    --deep-plum:    #4B1F5F;
    --royal-purple: #6D3FA9;
    --soft-lavender:#CDB7E9;
    --light-lilac:  #F4EEFB;
    --warm-white:   #FCFAFD;
    --charcoal:     #2E2433;
    --muted-rose:   #D98FB3;
    --nav-height:   85px;
  }
  
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  
  body {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
    padding-top: var(--nav-height);
  }
  

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--deep-plum);
    line-height: 1.2;
  }

  h1 { 
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    }

  h2 { 
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600; 
    }

  h3 { 
    font-size: 1.2rem;
    font-weight: 600;
    }

  p  { 
    font-size: 0.97rem; 
    line-height: 1.75; 
    color: var(--charcoal); 
    }
  
  a { 
    color: var(--royal-purple);
     text-decoration: none; 
     transition: color .2s; 
    }

  a:hover {
     color: var(--deep-plum);
    }
  
  .container {
     max-width: 1160px; 
     margin: 0 auto; 
     padding: 0 5%;
     }

  .text-center {
     text-align: center;
     }

  .sr-only  { 
    position: absolute; 
    width: 1px; 
    height: 1px; 
    overflow: hidden; 
    clip: rect(0,0,0,0); 
    }
  
  .divider {
    width: 60px; height: 3px;
    background: var(--muted-rose);
    margin: 16px auto 40px;
    border-radius: 2px;
  }
  .divider-left { margin-left: 0; }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;

  }
  .three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 48px 0;
  }
  @media (max-width: 768px) {
    .two-col   { grid-template-columns: 1fr; gap: 32px; }
    .three-col { grid-template-columns: 1fr; }
  }

  .btn {
    display: inline-block;
    padding: 11px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all .25s;
  }
  .btn-primary {
    background: var(--royal-purple);
    color: #fff;
    border-color: var(--royal-purple);
  }
  .btn-primary:hover {
    background: var(--deep-plum);
    border-color: var(--deep-plum);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75,31,95,.3);
  }
  .btn-outline {
    background: transparent;
    color: var(--royal-purple);
    border-color: var(--royal-purple);
  }
  .btn-outline:hover {
    background: var(--royal-purple);
    color: #fff;
    transform: translateY(-2px);
  }
  .btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.7);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
  }
  
  .card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid rgba(205,183,233,.3);
    box-shadow: 0 2px 12px rgba(75,31,95,.08);
    transition: transform .25s, box-shadow .25s;
  }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(75,31,95,.14);
  }
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
  }
  
  .highlight-box {
    background: linear-gradient(135deg, var(--light-lilac), #efe8f9);
    border-left: 4px solid var(--royal-purple);
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin: 28px 0;
  }
  .highlight-box p { color: var(--charcoal); }
  
  .stat-box {
    background: var(--light-lilac);
    border: 1px solid rgba(205,183,233,.4);
    border-radius: 14px;
    padding: 36px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform .25s, box-shadow .25s;
  }
  .stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(75,31,95,.12);
  }
  .stat-box .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--deep-plum);
    line-height: 1;
  }
  .stat-box .lbl {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--royal-purple);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.is-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; }
  
  

  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--deep-plum);
    display: flex;
    align-items: center;
    padding: 0 8%;
    box-shadow: 0 2px 20px rgba(75,31,95,.4);
  }
  
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    gap: 2%;
    width: 300px;
  }

  .nav-logo-text {
    font-family: serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;

  }
  
  .nav-logo-img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(205,183,233,.45);
    background: rgba(255,255,255,.08);
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin-right: 10px;
  }
  
  .nav-links li a {
    color: rgba(255,255,255,.82);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all .2s;
  }
  .nav-links li a:hover,
  .nav-links li a.active {
    color: #fff;
    background: rgba(255,255,255,.12);
  }
  
  .nav-links .nav-cta a,
  .more-dropdown .nav-cta a,
  .nav-mobile-panel .nav-cta a {
    background: var(--muted-rose);
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
  }
  .nav-links .nav-cta a { padding: 7px 18px; }
  .nav-links .nav-cta a:hover,
  .more-dropdown .nav-cta a:hover,
  .nav-mobile-panel .nav-cta a:hover { background: #c47aa0; }
  
  .nav-more { position: relative; list-style: none; }
  
  .nav-more-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,.82);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background .2s, color .2s;
  }
  .nav-more-btn:hover,
  .nav-more-btn.open { background: rgba(255,255,255,.12); color: #fff; }
  
  .more-chevron {
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(255,255,255,.8);
    transition: transform .25s;
    margin-top: 1px;
  }
  .nav-more-btn.open .more-chevron { transform: rotate(180deg); }
  
  .more-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--deep-plum);
    border-radius: 10px;
    min-width: 190px;
    list-style: none;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    transition: max-height .3s ease, padding .25s;
    z-index: 200;
  }
  .more-dropdown.open { max-height: 500px; padding: 8px 0; }
  
  .more-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,.8);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background .2s, color .2s;
  }
  .more-dropdown li a:hover,
  .more-dropdown li a.active { background: rgba(255,255,255,.1); color: #fff; }
  
  .more-dropdown .nav-cta a { margin: 4px 12px; padding: 7px 16px; display: inline-block; }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    flex-shrink: 0;
    transition: background .2s;
  }
  .nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
    transform-origin: center;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  .nav-mobile-panel {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--deep-plum);
    overflow: hidden;
    max-height: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    transition: max-height .35s ease;
    z-index: 190;
  }
  .nav-mobile-panel ul { list-style: none; padding: 10px 0; }
  .nav-mobile-panel li a {
    display: block;
    padding: 12px 24px;
    color: rgba(255,255,255,.82);
    font-size: 0.95rem;
    font-weight: 500;
    transition: background .2s, color .2s;
  }
  .nav-mobile-panel li a:hover,
  .nav-mobile-panel li a.active { background: rgba(255,255,255,.1); color: #fff; }
  .nav-mobile-panel .nav-cta a { margin: 4px 16px; padding: 8px 18px; display: inline-block; }
  
  @media (max-width: 860px) {
    .nav-links      { display: none; }
    .nav-toggle     { display: flex; }
    .nav-mobile-panel { display: block; }
    .nav-mobile-panel.open { max-height: 700px; }
  }
  
  
  .page-hero {
    background: linear-gradient(135deg, var(--deep-plum) 0%, #6b2f82 60%, var(--royal-purple) 100%);
    padding: 70px 5% 60px;
    text-align: center;
    position: relative;
    overflow: hidden;

  }
  
  /* Refernce: Background code refence from https://www.magicpattern.design/tools/css-backgrounds and Gemini */
  .page-hero::before {
    content: '';
    position: absolute; 
    inset: 0;
    background: 
    radial-gradient(circle, transparent 70%, var(--soft-lavender) 75%, var(--soft-lavender) 80%, transparent 81%), 
    radial-gradient(circle, transparent 20%, var(--soft-lavender) 21%, var(--soft-lavender) 25%, transparent 26%) 25px 25px, 
    linear-gradient(var(--royal-purple) 1px, transparent 1px) 0 -1px, 
    linear-gradient(90deg, var(--royal-purple) 1px, transparent 1px) -1px 0;
    background-size: 50px 50px, 50px 50px, 25px 25px, 25px 25px;
    opacity: 0.15; 
    pointer-events: none;
  }

  .page-hero h1 { color: #fff; margin-bottom: 12px; position: relative; }
  .page-hero p  { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto; position: relative; }
  
  
  /* FOOTER, Reference: https://math-link-bloom.base44.app */
  
  .site-footer {
    background: var(--deep-plum);
    padding: 60px 5% 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }
  
  .footer-brand .logo-text {
    font-family: serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
  }

  .footer-brand .logo-text.para p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,.65);
    margin-top: 10px;
    line-height: 1.7;
  }
  
  .footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a,
  .footer-col a {
    color: rgba(255,255,255,.65);
    font-size: 0.88rem;
    transition: color .2s;
  }
  .footer-col ul li a:hover,
  .footer-col a:hover { color: #fff; }
  
  .footer-col p {
    color: rgba(255,255,255,.6);
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background .2s, color .2s;
  }
  .social-links a:hover {
    background: var(--muted-rose);
    color: #fff;
  }
  
  .footer-bottom p {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,.45);
  }
  
  @media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
  
  .accordion { max-width: 780px; margin: 40px auto 0; }
  .accordion-item {
    background: #fff;
    border: 1px solid rgba(205,183,233,.5);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
  }
  .accordion-btn {
    width: 100%; text-align: left;
    background: none; border: none;
    padding: 18px 22px; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem; font-weight: 600;
    color: var(--deep-plum);
    display: flex; align-items: center; justify-content: space-between;
    transition: background .2s;
  }
  .accordion-btn:hover { background: var(--light-lilac); }
  .accordion-btn .icon {
    font-size: 1.2rem; color: var(--royal-purple);
    margin-left: 12px; flex-shrink: 0;
    transition: transform .3s;
  }
  .accordion-btn.open .icon { transform: rotate(45deg); }
  .accordion-body {
    max-height: 0; overflow: hidden;
    padding: 0 22px;
    color: #555; font-size: 0.92rem; line-height: 1.75;
    transition: max-height .35s ease, padding .3s;
  }
  .accordion-body.open { max-height: 400px; padding: 0 22px 18px; }
