    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #180f26;
      --ink:    #191127;
      --slate:  #23133a;
      --gold:   #883CF0;
      --gold-lt:#7c3aed;
      --cream:  #180f26;
      --warm:   #191127;
      --text:   #883CF0;
      --muted:  #d6d6d6;
      --border: #3a1c63;
      --radius: 4px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm);
      color: var(--text);
      line-height: 1.6;
    }

    /* ── NAV ── */
    nav {
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      height: 62px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 16px rgba(61, 61, 61, 0.35);
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: .75rem;
      text-decoration: none;
    }
    .nav-logo {
      width: 36px; height: 36px;
      background: var(--gold);
      border-radius: 50%;
      display: grid; place-items: center;
      font-family: 'DM Serif Display', serif;
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
    }
    .nav-title {
      font-family: 'DM Serif Display', serif;
      color: #fff;
      font-size: 1.15rem;
      letter-spacing: .02em;
    }
    .nav-title span { color: var(--gold-lt); }
    .nav-links { display: flex; gap: 2rem; }
    .nav-links a {
      color: rgba(255,255,255,.72);
      text-decoration: none;
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--gold-lt); }

    /* ── HERO ── */
    .hero {
      background: var(--navy);
      background-image:
        radial-gradient(ellipse 70% 60% at 80% 40%, rgba(151, 58, 201, 0.12) 0%, transparent 70%),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.03) 39px, rgba(255, 255, 255, 0.03) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, 0.03) 39px, rgba(255, 255, 255, 0.03) 40px);
      padding: 5.5rem 2.5rem 4.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero-eyebrow {
      display: inline-block;
      background: #23133a;
      border: 1px solid #3a1c63;
      color: var(--gold-lt);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: .35rem 1rem;
      border-radius: 2rem;
      margin-bottom: 1.4rem;
    }
    .hero h1 {
      font-family: 'DM Serif Display', serif;
      color: #fff;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      line-height: 1.12;
      max-width: 700px;
      margin: 0 auto 1.2rem;
    }
    .hero h1 em { color: var(--gold-lt); font-style: italic; }
    .hero p {
      color: rgba(255,255,255,.68);
      max-width: 520px;
      margin: 0 auto 2.2rem;
      font-size: 1.05rem;
    }
    .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn {
      display: inline-block;
      padding: .75rem 2rem;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .03em;
      cursor: pointer;
      border: none;
      transition: transform .15s, box-shadow .15s;
      text-decoration: none;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
    .btn-gold {
      background: var(--gold);
      color: #fff;
    }
    .btn-outline {
      background: transparent;
      border: 1.5px solid #3a1c63;
      color: rgba(255,255,255,.85);
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--cream);
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: .55rem;
      padding: .9rem 2rem;
      border-right: 1px solid var(--border);
      font-size: .82rem;
      font-weight: 500;
      color: #fff;
      white-space: nowrap;
    }
    .trust-item:last-child { border-right: none; }
    .trust-icon { font-size: 1.1rem; }

    /* ── SECTION COMMONS ── */
    section { padding: 4rem 2.5rem; }
    .container { max-width: 1060px; margin: 0 auto; }
    .section-label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .5rem;
    }
    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color:#fff;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .section-sub {
      color: var(--muted);
      max-width: 560px;
      font-size: .98rem;
    }
    .divider { width: 48px; height: 3px; background: var(--gold); margin: 1.2rem 0 2rem; border-radius: 2px; }

    /* ── ACCOUNT LOOKUP ── */
    #lookup { background: var(--warm); }
    .lookup-card {
      background: #23133a;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 2.5rem;
      box-shadow: 0 4px 28px rgba(32, 13, 42, 0.07);
      max-width: 640px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    @media(max-width:500px){ .form-row { grid-template-columns: 1fr; } }
    .form-group { display: flex; flex-direction: column; gap: .35rem; }
    .form-group label {
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--slate);
    }
    .form-group input,
    .form-group select {
      padding: .7rem .95rem;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-size: .95rem;
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(160, 58, 201, 0.15);
    }
    .consent-row {
      display: flex;
      gap: .75rem;
      align-items: flex-start;
      margin: 1.2rem 0;
      font-size: .83rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .consent-row input[type=checkbox] {
      margin-top: 3px;
      accent-color: var(--gold);
      width: 16px; height: 16px;
      flex-shrink: 0;
    }
    .form-actions { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
    #lookup-result {
      margin-top: 1.2rem;
      padding: 1rem 1.2rem;
      border-radius: var(--radius);
      font-size: .9rem;
      display: none;
    }
    .result-success { background: #eefaf3; border: 1px solid #7ed9a8; color: #1a5c36; }
    .result-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #7f1d1d; }

    /* ── HOW IT WORKS ── */
    #how { background: var(--cream); }
    .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
    .step-card {
      background: #23133a;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.8rem 1.5rem;
      position: relative;
      transition: box-shadow .2s, transform .2s;
    }
    .step-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(32, 13, 42, 0.1); }
    .step-num {
      font-family: 'DM Serif Display', serif;
      font-size: 2.4rem;
      color: rgba(141, 58, 201, 0.25);
      line-height: 1;
      margin-bottom: .6rem;
    }
    .step-card h3 {
      font-weight: 600;
      font-size: .98rem;
      color: #fff;
      margin-bottom: .45rem;
    }
    .step-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; }

    /* ── FAQ ── */
    #faq { background: var(--warm); }
    .faq-list { max-width: 720px; margin-top: 2rem; }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 1.15rem 0;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
      font-size: .97rem;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }
    .faq-question:hover { color: var(--gold); }
    .faq-icon {
      flex-shrink: 0;
      width: 22px; height: 22px;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: grid; place-items: center;
      font-size: .9rem;
      color: var(--muted);
      transition: background .2s, color .2s, transform .3s;
    }
    .faq-item.open .faq-icon {
      background: var(--gold);
      color: #fff;
      border-color: var(--gold);
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer p {
      padding: 0 0 1.2rem;
      font-size: .89rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ── PRIVACY ── */
    #privacy { background: var(--cream); }
    .privacy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
    .priv-card {
      background: #23133a;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.5rem;
    }
    .priv-icon { font-size: 1.6rem; margin-bottom: .7rem; }
    .priv-card h4 { font-weight: 600; font-size: .92rem; color: #fff; margin-bottom: .4rem; }
    .priv-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

    /* ── CONTACT ── */
    #contact { background: var(--navy); }
    #contact .section-title { color: #fff; }
    #contact .section-sub { color: rgba(255,255,255,.58); }
    #contact .section-label { color: var(--gold-lt); }
    #contact .divider { background: var(--gold-lt); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
    @media(max-width:640px){ .contact-grid { grid-template-columns: 1fr; } }
    .contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
    .contact-row {
      display: flex;
      gap: .85rem;
      align-items: flex-start;
    }
    .c-icon {
      width: 38px; height: 38px;
      background: #21182f;
      border-radius: 6px;
      display: grid; place-items: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .c-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: .15rem; }
    .c-val { font-size: .95rem; color: rgba(255,255,255,.85); font-weight: 500; }
    .contact-form-area {
      background: rgba(255,255,255,.04);
      border: 1px solid #3a1c63;
      border-radius: 8px;
      padding: 1.8rem;
    }
    .contact-form-area .form-group label { color: rgba(255,255,255,.5); }
    .contact-form-area input,
    .contact-form-area textarea {
      padding: .7rem .95rem;
      border: 1.5px solid #3a1c63;
      border-radius: var(--radius);
      font-size: .93rem;
      font-family: 'DM Sans', sans-serif;
      color: #fff;
      background: rgba(255,255,255,.05);
      transition: border-color .2s;
      outline: none;
      width: 100%;
    }
    .contact-form-area input:focus,
    .contact-form-area textarea:focus { border-color: var(--gold); }
    .contact-form-area textarea { min-height: 100px; resize: vertical; }
    .contact-form-area .form-group { margin-bottom: .85rem; }
    #contact-result {
      margin-top: .8rem;
      font-size: .85rem;
      color: var(--gold-lt);
      display: none;
    }

    /* ── FOOTER ── */
    footer {
      background: #180f26;
      padding: 2rem 2.5rem;
      text-align: center;
      font-size: .78rem;
      color: rgba(255, 255, 255, 0.865);
      line-height: 1.8;
    }
    footer a { color: rgba(255, 255, 255, 0.792); text-decoration: none; }
    footer a:hover { color: var(--gold-lt); }
    .footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: .6rem; flex-wrap: wrap; }

    /* ── ACCREDITATIONS ── */
    .accred-bar {
      background: var(--warm);
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2.5rem;
      padding: 1.6rem 2.5rem;
    }
    .accred-item {
      display: flex; align-items: center; gap: .5rem;
      font-size: .8rem; color: var(--muted); font-weight: 500;
    }
    .accred-badge {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: .25rem .6rem;
      font-size: .7rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: .04em;
    }

    /* ── TOAST ── */
    #toast {
      position: fixed; bottom: 1.5rem; right: 1.5rem;
      background: var(--navy);
      color: #fff;
      padding: .85rem 1.5rem;
      border-radius: 6px;
      font-size: .88rem;
      box-shadow: 0 8px 32px rgba(0,0,0,.35);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity .3s, transform .3s;
      pointer-events: none;
      z-index: 999;
      border-left: 3px solid var(--gold);
    }
    #toast.show { opacity: 1; transform: translateY(0); }

    /* ── MODAL ── */
    .modal-bg {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,.6);
      backdrop-filter: blur(3px);
      z-index: 200;
      place-items: center;
    }
    .modal-bg.open { display: grid; }
    .modal {
      background: #1f1232;
      border-radius: 10px;
      padding: 2.2rem;
      max-width: 480px;
      width: 90%;
      box-shadow: 0 24px 60px rgba(0,0,0,.35);
      position: relative;
    }
    .modal h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: #fff; margin-bottom: 1rem; }
    .modal p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: .75rem; }
    .modal-close {
      position: absolute; top: 1rem; right: 1rem;
      background: var(--cream); border: none;
      width: 30px; height: 30px; border-radius: 50%;
      cursor: pointer; font-size: 1rem; color: var(--muted);
      display: grid; place-items: center;
    }
    .modal-close:hover { background: var(--border); }

    /* Payment methods */
    .pay-icons { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .4rem; }
    .pay-icon {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: .3rem .7rem;
      font-size: .75rem;
      font-weight: 700;
      color: #fef2f2d2;
      letter-spacing: .04em;
    }

    /* Hours table */
    .hours-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin-top: 1.2rem; }
    .hours-table td { padding: .45rem .6rem; border-bottom: 1px solid var(--border); }
    .hours-table td:first-child { font-weight: 500; color: #fff; }
    .hours-table td:last-child { color: var(--muted); }