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

    :root {
      --purple:      #41177A;
      --purple-deep: #1F0A3D;
      --purple-soft: #6E3CB0;
      --purple-lt:   #AF7DF3;
      --gold:        #F3C626;
      --gold-deep:   #DCAF10;
      --cream:       #F4F1EA;
      --cream-deep:  #E3E5DE;
      --ink:         #0F0814;
      --gray:        #7B7E86;
      --gray-line:   #D9D6CF;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Roboto', sans-serif; background: var(--cream); color: var(--ink); overflow-x: clip; }

    .display { font-family: 'Jost', sans-serif; font-weight: 900; line-height: .85; letter-spacing: -.02em; text-transform: uppercase; }
    .serif-i { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -.01em; text-transform: none; }

    /* ─── LOADER ─────────────────────────────────────────────── */
    .loader { position: fixed; inset: 0; background: var(--purple); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px; transition: opacity .8s ease, visibility .8s ease; }
    .loader.hide { opacity: 0; visibility: hidden; }
    .loader-mark { font-family: 'Jost', sans-serif; font-weight: 900; font-size: 64px; color: var(--gold); letter-spacing: -.04em; text-align: center; line-height: 1; }
    .loader-mark em { font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; color: var(--cream); display: inline-block; transform: translateY(2px); }
    .loader-mark .sub { display: block; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .25em; color: rgba(255,255,255,.6); text-transform: uppercase; margin-top: 14px; }
    .loader-bar { width: 280px; height: 2px; background: rgba(255,255,255,.15); overflow: hidden; }
    .loader-bar::after { content: ''; display: block; height: 100%; background: var(--gold); animation: loadbar 1.4s ease forwards; transform-origin: left; }
    @keyframes loadbar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

    /* ─── TOP BAR ─────────────────────────────────────────────── */
    .topbar { background: var(--purple-deep); color: rgba(255,255,255,.7); display: flex; justify-content: space-between; align-items: center; padding: 0 44px; height: 36px; font-size: 11.5px; letter-spacing: .05em; }
    .topbar-pulse { display: inline-flex; align-items: center; gap: 8px; }
    .topbar-pulse::before { content: ''; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 0 rgba(243,198,38,.7); animation: pulse 1.6s ease-in-out infinite; }
    @keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(243,198,38,0); } 100% { box-shadow: 0 0 0 0 rgba(243,198,38,0); } }
    .topbar a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
    .topbar a:hover { color: var(--gold); }
    .topbar-right { display: flex; gap: 22px; align-items: center; }
    .topbar-right .sep { width: 1px; height: 11px; background: rgba(255,255,255,.18); }

    /* ─── MAIN NAV ────────────────────────────────────────────── */
    .nav { background: var(--cream); display: flex; justify-content: space-between; align-items: center; padding: 0 44px; height: 76px; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(15,8,20,.07); transition: transform .4s ease; }
    .nav.hide { transform: translateY(-100%); }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo-mark { width: 38px; height: 38px; background: var(--purple); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 900; font-size: 19px; letter-spacing: -.04em; }
    .nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
    .nav-logo-univ { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gray); font-weight: 500; }
    .nav-logo-name { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: .02em; color: var(--ink); line-height: 1; }
    .nav-links { display: flex; list-style: none; gap: 4px; }
    .nav-links a { color: var(--ink); text-decoration: none; font-size: 13.5px; font-weight: 500; padding: 8px 14px; transition: color .2s; position: relative; }
    .nav-links a:hover { color: var(--purple); }
    .nav-links a.active { color: var(--purple); font-weight: 700; }
    .nav-links a.active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; background: var(--gold); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .nav-cta { background: var(--purple); color: var(--cream); padding: 11px 22px; font-family: 'Jost', sans-serif; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; text-decoration: none; transition: background .25s; position: relative; overflow: hidden; }
    .nav-cta:hover { background: var(--purple-deep); }
    .nav-cta::before { content: ''; position: absolute; top: 0; left: -120%; width: 50%; height: 100%; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%); transition: left .8s ease; }
    .nav-cta:hover::before { left: 220%; }

    /* ─── BREADCRUMB ────────────────────────────────────────── */
    .crumb { background: var(--cream); padding: 18px 44px; border-bottom: 1px solid rgba(15,8,20,.06); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); font-weight: 600; display: flex; align-items: center; gap: 12px; }
    .crumb a { color: var(--gray); text-decoration: none; transition: color .2s; }
    .crumb a:hover { color: var(--purple); }
    .crumb .sep { color: var(--gold); }
    .crumb .current { color: var(--ink); }

    /* ─── SECTION HEADER ─────────────────────────────────────── */
    .sec-header { padding: 100px 44px 56px; }
    .sec-title { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(44px, 6vw, 90px); line-height: .92; letter-spacing: -.02em; color: var(--ink); }
    .sec-title .serif-i { color: var(--purple); display: inline-block; }
    .sec-sub { font-size: 16px; line-height: 1.6; color: var(--gray); max-width: 560px; margin-top: 22px; }

    /* ══════════════════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════════════════ */
    .ahero { background: var(--purple-deep); color: var(--cream); position: relative; overflow: hidden; padding: 90px 44px 0; isolation: isolate; }
    .ahero-grid-bg { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(circle at 58% 40%, #000 30%, transparent 78%); -webkit-mask-image: radial-gradient(circle at 58% 40%, #000 30%, transparent 78%); }
    .ahero-inner { position: relative; z-index: 2; }
    .ahero-eyebrow { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 14px; opacity: 0; animation: fadeUp 1s ease .2s forwards; }
    .ahero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 0 rgba(243,198,38,.7); animation: pulse 1.6s ease-in-out infinite; }
    .ahero-title { font-family: 'Jost', sans-serif; font-weight: 900; text-transform: uppercase; line-height: .84; letter-spacing: -.02em; font-size: clamp(58px, 12vw, 200px); margin: 26px 0 0; }
    .ahero-title .row { display: block; overflow: hidden; padding-bottom: .12em; margin-bottom: -.1em; }
    .ahero-title .row span { display: inline-block; transform: translateY(110%); animation: rise 1.1s cubic-bezier(.22,.61,.36,1) forwards; }
    .ahero-title .row.r1 span { animation-delay: .15s; }
    .ahero-title .row.r2 span { animation-delay: .32s; }
    .ahero-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold); text-transform: lowercase; }
    @keyframes rise { to { transform: translateY(0); } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

    .ahero-bottom { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: end; padding: 50px 0 56px; }
    .ahero-lede { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,.78); max-width: 540px; opacity: 0; animation: fadeUp 1s ease .8s forwards; }
    .ahero-lede b { color: var(--cream); font-weight: 500; }
    .ahero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; opacity: 0; animation: fadeUp 1s ease 1s forwards; }
    .ahero-cta { display: inline-flex; align-items: center; gap: 14px; background: var(--gold); color: var(--ink); padding: 15px 24px; font-family: 'Jost', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; transition: transform .25s, background .25s; }
    .ahero-cta:hover { transform: translateY(-3px); }
    .ahero-cta.alt { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,.3); }
    .ahero-cta.alt:hover { border-color: var(--gold); color: var(--gold); }

    .hfacts { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 -44px; border-top: 1px solid rgba(255,255,255,.12); }
    .hfact { padding: 24px 28px; border-right: 1px solid rgba(255,255,255,.12); opacity: 0; animation: fadeUp 1s ease 1.1s forwards; }
    .hfact:nth-child(2){ animation-delay: 1.2s; } .hfact:nth-child(3){ animation-delay: 1.3s; } .hfact:nth-child(4){ animation-delay: 1.4s; }
    .hfact:last-child { border-right: none; }
    .hfact-lbl { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; }
    .hfact-val { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 26px; margin-top: 8px; color: var(--cream); letter-spacing: -.01em; }
    .hfact-val .serif-i { color: var(--gold); }

    /* ══════════════════════════════════════════════════════════
       PATHWAYS LADDER
    ══════════════════════════════════════════════════════════ */
    .paths { background: var(--cream); }
    .path-list { padding: 0 44px 100px; border-top: 1px solid var(--gray-line); }
    .path-row { display: grid; grid-template-columns: 90px 1.6fr 1.4fr; gap: 32px; align-items: center; padding: 34px 8px; border-bottom: 1px solid var(--gray-line); text-decoration: none; color: inherit; position: relative; transition: padding-left .35s cubic-bezier(.22,.61,.36,1); }
    .path-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: center; transition: transform .35s; }
    .path-row:hover { padding-left: 26px; }
    .path-row:hover::before { transform: scaleY(1); }
    .path-num { font-family: 'Jost', sans-serif; font-weight: 900; font-size: 34px; color: transparent; -webkit-text-stroke: 1.4px var(--gray-line); letter-spacing: -.02em; transition: -webkit-text-stroke-color .3s; }
    .path-row:hover .path-num { -webkit-text-stroke-color: var(--gold-deep); }
    .path-name { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(24px, 3vw, 40px); letter-spacing: -.02em; color: var(--ink); line-height: 1; }
    .path-name .tag { font-family: 'Roboto', sans-serif; font-weight: 500; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); vertical-align: middle; margin-left: 12px; }
    .path-meta { font-size: 14px; line-height: 1.6; color: var(--gray); }
    .path-meta b { color: var(--ink); font-weight: 600; }
    .path-go { display: inline-flex; align-items: center; gap: 10px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); white-space: nowrap; }
    .path-go .arw { width: 22px; height: 1px; background: var(--purple); position: relative; transition: width .3s; }
    .path-go .arw::after { content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--purple); border-right: 1px solid var(--purple); transform: rotate(45deg); }
    .path-row:hover .path-go .arw { width: 38px; }

    /* ══════════════════════════════════════════════════════════
       PROGRAMME DIRECTORY
    ══════════════════════════════════════════════════════════ */
    .dir { background: var(--ink); color: var(--cream); }
    .dir .sec-title { color: var(--cream); }
    .dir .sec-title .serif-i { color: var(--gold); }
    .dir .sec-sub { color: rgba(255,255,255,.6); }
    .dir-wrap { padding: 0 44px 100px; }
    .dir-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
    .dir-tab { padding: 11px 22px; border-radius: 100px; border: 1px solid rgba(255,255,255,.2); background: none; color: rgba(255,255,255,.7); font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; transition: all .25s; }
    .dir-tab:hover { border-color: var(--gold); color: var(--cream); }
    .dir-tab.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
    .dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
    .dir-grid.two { grid-template-columns: 1fr 1fr; gap: 28px; }
    .dir-col { display: flex; flex-direction: column; gap: 16px; }
    .dir-col-h { display: flex; align-items: baseline; gap: 12px; padding-bottom: 16px; margin-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.14); }
    .dir-col-h b { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 24px; color: var(--gold); letter-spacing: -.01em; }
    .dir-col-h span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; }
    .dir-card { display: flex; flex-direction: column; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); padding: 26px 26px 24px; text-decoration: none; color: inherit; transition: border-color .3s, background .3s, transform .3s; }
    .dir-card:hover { border-color: var(--gold); background: rgba(255,255,255,.07); transform: translateY(-4px); }
    .dir-card.soon { opacity: .62; }
    .dir-card-lvl { font-family: 'Jost', sans-serif; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
    .dir-card-name { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 19px; color: var(--cream); margin-top: 12px; line-height: 1.2; }
    .dir-card-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.55); margin-top: 10px; flex: 1; }
    .dir-card-go { margin-top: 20px; display: inline-flex; align-items: center; gap: 9px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); transition: color .25s, gap .25s; }
    .dir-card:hover .dir-card-go { color: var(--gold); gap: 15px; }

    /* ══════════════════════════════════════════════════════════
       FEES (tabbed)
    ══════════════════════════════════════════════════════════ */
    .fees { background: var(--cream); }
    .fees-wrap { padding: 0 44px 100px; }
    .fees-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
    .fees-tab { padding: 12px 24px; border-radius: 100px; border: 1px solid var(--gray-line); background: #fff; color: var(--ink); font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13.5px; cursor: pointer; transition: all .25s; }
    .fees-tab:hover { border-color: var(--purple); }
    .fees-tab.active { background: var(--purple); color: var(--cream); border-color: var(--purple); }
    .fees-panel { display: none; }
    .fees-panel.active { display: block; animation: fadeUp .5s ease; }
    .fees-table { border-top: 2px solid var(--ink); }
    .fees-thead { display: grid; grid-template-columns: 60px 1fr 150px 180px; gap: 20px; padding: 16px 8px; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); font-weight: 700; border-bottom: 1px solid var(--gray-line); }
    .fees-thead .r { text-align: right; }
    .fees-row { display: grid; grid-template-columns: 60px 1fr 150px 180px; gap: 20px; padding: 22px 8px; align-items: center; border-bottom: 1px solid var(--gray-line); transition: background .25s, padding-left .25s; }
    .fees-row:hover { background: #fff; padding-left: 18px; }
    .fees-num { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 14px; color: var(--gold-deep); }
    .fees-name { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); }
    .fees-name .tag { font-family: 'Roboto', sans-serif; font-weight: 500; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--purple-soft); padding: 3px 8px; border-radius: 100px; margin-left: 8px; vertical-align: middle; }
    .fees-dur { font-size: 14px; color: var(--gray); }
    .fees-amt { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 22px; color: var(--purple); text-align: right; letter-spacing: -.01em; }
    .fees-amt span { font-size: 12px; color: var(--gray); font-weight: 500; margin-left: 5px; }
    .fees-amt.soft { font-size: 15px; color: var(--gray); font-weight: 600; }
    .fees-note { display: grid; grid-template-columns: 160px 1fr; gap: 24px; margin-top: 34px; padding: 26px 28px; background: var(--purple); color: var(--cream); align-items: center; }
    .fees-note-lbl { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
    .fees-note-text { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.85); }
    .fees-note-text a { color: var(--gold); text-decoration: none; }
    .fees-dummy { font-size: 12px; color: var(--gray); font-style: italic; margin-top: 16px; }

    /* ══════════════════════════════════════════════════════════
       ACADEMIC APPROACH
    ══════════════════════════════════════════════════════════ */
    .approach { background: var(--purple-deep); color: var(--cream); }
    .approach .sec-title { color: var(--cream); }
    .approach .sec-title .serif-i { color: var(--gold); }
    .appr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 0 44px 60px; }
    .appr-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); padding: 32px 28px 30px; transition: border-color .3s, transform .3s, background .3s; }
    .appr-card:hover { border-color: var(--gold); transform: translateY(-5px); background: rgba(255,255,255,.07); }
    .appr-ic { width: 46px; height: 46px; border-radius: 50%; background: rgba(243,198,38,.14); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
    .appr-ic svg { width: 24px; height: 24px; }
    .appr-card h3 { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 18px; color: var(--cream); line-height: 1.2; }
    .appr-card p { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,.6); margin-top: 12px; }
    /* accreditation strip */
    .accred { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; padding: 0 44px 100px; }
    .accred-item { text-align: center; }
    .accred-item .v { font-family: 'Jost', sans-serif; font-weight: 900; font-size: 30px; color: var(--gold); letter-spacing: -.02em; }
    .accred-item .k { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; margin-top: 6px; }
    .accred-sep { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

    /* ══════════════════════════════════════════════════════════
       STUDIOS (industry-style, ported from B.Des)
    ══════════════════════════════════════════════════════════ */
    .studios { background: var(--cream); padding-bottom: 100px; }
    .studios-intro { max-width: 760px; margin: 0 44px 60px; font-size: 18px; line-height: 1.6; color: var(--gray); }
    .studios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 0 44px 60px; }
    .studio-block { display: flex; flex-direction: column; background: #fff; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
    .studio-block:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(31,10,61,.1); }
    .studio-img { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--purple); }
    .studio-img-frame { position: absolute; inset: 0; }
    .studio-img-slot { position: absolute; inset: 0; opacity: 0; transition: opacity .55s cubic-bezier(.45,0,.25,1); }
    .studio-img-slot.active { opacity: 1; }
    .studio-img-slot img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.4s cubic-bezier(.22,.61,.36,1); filter: brightness(.95); }
    .studio-img-slot.active img { transform: scale(1); }
    .studio-block:hover .studio-img-slot.active img { transform: scale(1.05); }
    .studio-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,8,20,.0) 50%, rgba(15,8,20,.55) 100%); pointer-events: none; z-index: 2; }
    .studio-img-badge { position: absolute; bottom: 18px; left: 20px; font-family: 'Jost', sans-serif; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--gold); padding: 6px 12px; background: rgba(15,8,20,.55); backdrop-filter: blur(6px); z-index: 3; transition: opacity .3s; }
    .studio-img-caption { position: absolute; right: 20px; bottom: 18px; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--cream); padding: 6px 12px; background: rgba(65,23,122,.85); backdrop-filter: blur(6px); z-index: 3; opacity: 0; transform: translateY(6px); transition: opacity .35s, transform .35s; }
    .studio-img-caption.show { opacity: 1; transform: translateY(0); }
    .studio-body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
    .studio-block-num { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .18em; color: var(--gray); font-weight: 700; display: flex; align-items: center; gap: 12px; }
    .studio-block-num::before { content: ''; width: 24px; height: 1px; background: var(--purple); }
    .studio-block-num strong { color: var(--purple); }
    .studio-block-name { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(22px, 1.9vw, 26px); line-height: 1.1; color: var(--ink); letter-spacing: -.01em; }
    .studio-block-name em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple); }
    .studio-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
    .studio-list li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: baseline; font-size: 14px; line-height: 1.5; color: var(--ink); padding: 12px 0; border-bottom: 1px solid rgba(15,8,20,.08); cursor: pointer; transition: padding-left .3s, color .3s; }
    .studio-list li:last-child { border-bottom: none; }
    .studio-list li::before { content: '→'; color: var(--gold); font-family: 'Jost'; font-weight: 700; font-size: 13px; transition: transform .3s; }
    .studio-list li:hover { padding-left: 8px; }
    .studio-list li:hover::before { transform: translateX(4px); }
    .studio-list li.is-active { padding-left: 8px; }
    .studio-list li.is-active strong { color: var(--gold-deep); }
    .studio-list li strong { font-family: 'Jost', sans-serif; font-weight: 700; color: var(--purple); display: block; font-size: 14.5px; margin-bottom: 3px; transition: color .3s; }
    .studio-list li span { color: var(--gray); font-size: 12.5px; line-height: 1.45; }
    .studios-location { margin: 0 44px; color: var(--cream); padding: 56px; display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; position: relative; overflow: hidden; isolation: isolate; min-height: 200px; }
    .studios-location-bg { position: absolute; inset: 0; z-index: -2; }
    .studios-location-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 8s cubic-bezier(.22,.61,.36,1); }
    .studios-location:hover .studios-location-bg img { transform: scale(1.1); }
    .studios-location-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(31,10,61,.85) 0%, rgba(65,23,122,.75) 50%, rgba(15,8,20,.7) 100%); z-index: 1; }
    .studios-location-lbl { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; display: flex; align-items: center; gap: 12px; position: relative; z-index: 2; white-space: nowrap; }
    .studios-location-lbl::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
    .studios-location-text { font-family: 'Jost', sans-serif; font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; line-height: 1.3; color: var(--cream); position: relative; z-index: 2; text-shadow: 0 2px 18px rgba(15,8,20,.45); }
    .studios-location-text em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold); }
    .studios-location-pin { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--cream); font-weight: 700; padding: 10px 18px; border: 1px solid rgba(255,255,255,.35); background: rgba(15,8,20,.25); backdrop-filter: blur(6px); position: relative; z-index: 2; white-space: nowrap; }

    /* ══════════════════════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════════════════════ */
    .faq { background: var(--purple-deep); color: var(--cream); }
    .faq .sec-title { color: var(--cream); }
    .faq .sec-title .serif-i { color: var(--gold); }
    .faq-wrap { padding: 0 44px 100px; max-width: 980px; }
    .faq-item { border-top: 1px solid rgba(255,255,255,.14); }
    .faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
    .faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 26px 0; display: flex; align-items: center; gap: 20px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: clamp(16px, 1.6vw, 20px); color: var(--cream); transition: color .25s; }
    .faq-q:hover { color: var(--gold); }
    .faq-item.open .faq-q { color: var(--gold); }
    .faq-ico { margin-left: auto; position: relative; width: 16px; height: 16px; flex-shrink: 0; }
    .faq-ico::before, .faq-ico::after { content: ''; position: absolute; background: var(--gold); transition: transform .3s; }
    .faq-ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
    .faq-ico::after { top: 0; left: 7px; width: 2px; height: 16px; }
    .faq-item.open .faq-ico::after { transform: scaleY(0); }
    .faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s cubic-bezier(.32,.72,0,1); }
    .faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
    .faq-a-inner { overflow: hidden; }
    .faq-a { padding: 0 0 26px; font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.72); max-width: 800px; }

    /* ══════════════════════════════════════════════════════════
       ADMISSION PROCESS
    ══════════════════════════════════════════════════════════ */
    .adm { background: var(--cream); }
    .adm-wrap { padding: 0 44px 100px; }
    .adm-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
    .adm-rail { position: absolute; top: 27px; left: 10%; right: 10%; height: 2px; background: var(--gray-line); z-index: 0; }
    .adm-rail::after { content: ''; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 1.6s cubic-bezier(.7,0,.25,1); }
    .adm-rail.in::after { transform: scaleX(1); }
    .adm-step { padding-right: 26px; position: relative; }
    .adm-badge { width: 56px; height: 56px; border-radius: 50%; background: var(--purple); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 900; font-size: 20px; position: relative; z-index: 2; }
    .adm-step h3 { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); margin-top: 22px; }
    .adm-step p { font-size: 13px; line-height: 1.6; color: var(--gray); margin-top: 8px; }
    .adm-foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--gray-line); }
    .adm-foot p { font-size: 13.5px; color: var(--gray); }
    .adm-foot p b { color: var(--ink); font-weight: 600; }
    .adm-cta { display: inline-flex; align-items: center; gap: 12px; background: var(--ink); color: var(--cream); padding: 14px 26px; font-family: 'Jost', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; transition: transform .25s, background .25s; white-space: nowrap; }
    .adm-cta:hover { transform: translateY(-3px); background: var(--purple); }

    /* ══════════════════════════════════════════════════════════
       CLOSING CTA
    ══════════════════════════════════════════════════════════ */
    .closing { background: var(--gold); color: var(--ink); padding: 100px 44px; text-align: center; position: relative; overflow: hidden; }
    .closing-ghost { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 900; font-size: clamp(100px, 20vw, 340px); color: rgba(15,8,20,.05); text-transform: uppercase; letter-spacing: -.04em; pointer-events: none; white-space: nowrap; }
    .closing-inner { position: relative; z-index: 2; }
    .closing h2 { font-family: 'Jost', sans-serif; font-weight: 900; font-size: clamp(40px, 6vw, 84px); line-height: .95; letter-spacing: -.02em; text-transform: uppercase; }
    .closing h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; text-transform: none; }
    .closing p { font-size: 17px; line-height: 1.6; max-width: 560px; margin: 24px auto 0; color: rgba(15,8,20,.7); }
    .closing-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
    .closing-cta { display: inline-flex; align-items: center; gap: 14px; background: var(--ink); color: var(--cream); padding: 17px 30px; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; transition: transform .25s, background .25s; }
    .closing-cta:hover { transform: translateY(-3px); background: var(--purple); }
    .closing-cta.alt { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
    .closing-cta.alt:hover { background: var(--ink); color: var(--gold); }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    .footer { background: var(--ink); color: var(--cream); padding: 80px 44px 0; }
    .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .footer-brand { display: flex; flex-direction: column; gap: 22px; }
    .footer-mark { display: flex; align-items: center; gap: 14px; }
    .footer-mark-icon { width: 44px; height: 44px; background: var(--purple); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 900; font-size: 22px; letter-spacing: -.04em; }
    .footer-mark-name { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -.005em; line-height: 1.05; }
    .footer-mark-name span { color: var(--gold); }
    .footer-addr { font-size: 13.5px; line-height: 1.85; color: rgba(255,255,255,.5); }
    .footer-addr a { color: var(--gold); text-decoration: none; }
    .footer-col h4 { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 22px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13.5px; transition: color .2s; }
    .footer-col ul a:hover { color: var(--cream); }
    .footer-mega { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .footer-mega-text { font-family: 'Jost', sans-serif; font-weight: 900; font-size: clamp(80px, 16vw, 280px); line-height: .85; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); letter-spacing: -.03em; text-transform: uppercase; text-align: center; white-space: nowrap; overflow: hidden; }
    .footer-mega-text em { font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; color: var(--gold); -webkit-text-stroke: 0; text-transform: lowercase; letter-spacing: -.01em; }
    .footer-bottom { display: flex; justify-content: space-between; padding: 30px 0; font-size: 11.5px; color: rgba(255,255,255,.3); letter-spacing: .05em; }
    .footer-socials { display: flex; gap: 24px; }
    .footer-socials a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
    .footer-socials a:hover { color: var(--gold); }

    /* ─── REVEAL ─────────────────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1); }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: .08s; }
    .reveal-d2 { transition-delay: .18s; }
    .reveal-d3 { transition-delay: .28s; }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .dir-grid { grid-template-columns: 1fr 1fr; }
      .appr-grid { grid-template-columns: 1fr 1fr; }
      .studios-grid { grid-template-columns: 1fr 1fr; }
      .adm-steps { grid-template-columns: 1fr 1fr 1fr; gap: 40px 0; }
      .adm-rail { display: none; }
    }
    @media (max-width: 920px) {
      .topbar, .nav-links { display: none; }
      .ahero-bottom { grid-template-columns: 1fr; gap: 30px; }
      .ahero-ctas { justify-content: flex-start; }
      .hfacts { grid-template-columns: 1fr 1fr; }
      .hfact:nth-child(2) { border-right: none; }
      .sec-header { padding: 64px 18px 36px; }
      .ahero, .path-list, .dir-wrap, .fees-wrap, .appr-grid, .accred, .adm-wrap, .faq-wrap, .closing, .footer { padding-left: 18px; padding-right: 18px; }
      .path-list, .dir-wrap, .fees-wrap, .adm-wrap, .faq-wrap { padding-bottom: 64px; }
      .accred { padding-bottom: 64px; }
      .studios { padding-bottom: 64px; }
      .studios-intro, .studios-grid, .studios-location { margin-left: 18px; margin-right: 18px; }
      .studios-grid { grid-template-columns: 1fr; }
      .studios-location { grid-template-columns: 1fr; gap: 18px; padding: 32px 24px; }
      .adm-steps { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
      .path-row { grid-template-columns: 60px 1fr; gap: 8px 20px; }
      .path-meta { grid-column: 2; }
      .dir-grid, .dir-grid.two { grid-template-columns: 1fr; gap: 16px; }
      .fees-thead { display: none; }
      .fees-row { grid-template-columns: 1fr auto; gap: 6px 16px; padding: 18px 8px; }
      .fees-num { display: none; }
      .fees-name { grid-column: 1; }
      .fees-dur { grid-column: 1; grid-row: 2; }
      .fees-amt { grid-column: 2; grid-row: 1 / 3; align-self: center; }
      .fees-note { grid-template-columns: 1fr; gap: 10px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 560px) {
      .hfacts { grid-template-columns: 1fr; }
      .hfact { border-right: none; }
      .appr-grid { grid-template-columns: 1fr; }
      .accred-sep { display: none; }
      .footer-top { grid-template-columns: 1fr; }
    }

.dir-card.hide { display: none; }