*, *::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); } }
.hidden-fields-container{
	border:0px;
}
    /* ─── 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: 540px; 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 55% 38%, #000 30%, transparent 78%); -webkit-mask-image: radial-gradient(circle at 55% 38%, #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(60px, 13vw, 210px); 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); }

    /* ── contact method strip ── */
    .methods { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 -44px; border-top: 1px solid rgba(255,255,255,.12); }
    .method { padding: 28px; border-right: 1px solid rgba(255,255,255,.12); text-decoration: none; color: inherit; display: block; transition: background .3s; opacity: 0; animation: fadeUp 1s ease 1.1s forwards; position: relative; }
    .method:nth-child(2){ animation-delay: 1.2s; } .method:nth-child(3){ animation-delay: 1.3s; } .method:nth-child(4){ animation-delay: 1.4s; }
    .method:last-child { border-right: none; }
    .method:hover { background: rgba(255,255,255,.05); }
    .method-ic { width: 40px; height: 40px; border-radius: 50%; background: rgba(243,198,38,.14); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background .3s, transform .3s; }
    .method:hover .method-ic { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
    .method-ic svg { width: 20px; height: 20px; }
    .method-lbl { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; }
    .method-val { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 16px; margin-top: 8px; color: var(--cream); line-height: 1.35; word-break: break-word; }
    .method-go { margin-top: 14px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s; }
    .method:hover .method-go { opacity: 1; transform: translateX(0); }

    /* ══════════════════════════════════════════════════════════
       FORM SECTION
    ══════════════════════════════════════════════════════════ */
    .formsec { background: var(--cream); }
    .form-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; padding: 0 44px 100px; align-items: start; }

    .form-card { background: #fff; border: 1px solid var(--gray-line); padding: 44px 44px 48px; position: relative; }
    .form-reasons { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
    .reason { padding: 10px 18px; border-radius: 100px; border: 1px solid var(--gray-line); background: var(--cream); color: var(--ink); font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; transition: all .25s; }
    .reason:hover { border-color: var(--purple); }
    .reason.active { background: var(--purple); color: var(--cream); border-color: var(--purple); }

    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .field { position: relative; }
    .field.full { grid-column: 1 / -1; }
    .field label { display: block; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--gray); margin-bottom: 9px; }
    .field label .req { color: var(--gold-deep); }
    .field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--gray-line); background: var(--cream); font-family: 'Roboto', sans-serif; font-size: 15px; color: var(--ink); transition: border-color .25s, background .25s, box-shadow .25s; outline: none; border-radius: 0; }
    .field textarea { resize: vertical; min-height: 120px; }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--purple); background: #fff; box-shadow: 0 0 0 3px rgba(65,23,122,.1); }
    .field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237B7E86' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
    .field select:disabled { opacity: .5; cursor: not-allowed; }
    .field.err input, .field.err select, .field.err textarea { border-color: #C0392B; box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
    .field .msg { font-size: 11.5px; color: #C0392B; margin-top: 6px; min-height: 14px; opacity: 0; transition: opacity .2s; }
    .field.err .msg { opacity: 1; }

    .form-submit { margin-top: 30px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .btn-submit { display: inline-flex; align-items: center; gap: 14px; background: var(--ink); color: var(--cream); padding: 17px 34px; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; border: none; cursor: pointer; transition: transform .25s, background .25s; }
    .btn-submit:hover { transform: translateY(-3px); background: var(--purple); }
    .btn-submit .arrow { width: 26px; height: 1px; background: var(--gold); position: relative; }
    .btn-submit .arrow::after { content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); transform: rotate(45deg); }
    .form-note { font-size: 12px; color: var(--gray); }

    /* success overlay */
    .form-success { position: absolute; inset: 0; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 44px; opacity: 0; visibility: hidden; transition: opacity .5s ease, visibility .5s ease; }
    .form-success.show { opacity: 1; visibility: visible; }
    .fs-tick { width: 76px; height: 76px; border-radius: 50%; background: var(--purple); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; transform: scale(0); transition: transform .5s cubic-bezier(.34,1.56,.64,1) .15s; }
    .form-success.show .fs-tick { transform: scale(1); }
    .fs-tick svg { width: 38px; height: 38px; }
    .form-success h3 { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 30px; letter-spacing: -.01em; color: var(--ink); }
    .form-success p { font-size: 15px; line-height: 1.6; color: var(--gray); margin-top: 12px; max-width: 360px; }
    .fs-again { margin-top: 26px; background: none; border: 1px solid var(--ink); color: var(--ink); padding: 12px 26px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: all .25s; }
    .fs-again:hover { background: var(--ink); color: var(--cream); }

    /* info sidebar */
    .info-card { background: var(--ink); color: var(--cream); padding: 40px 38px 42px; position: relative; overflow: hidden; }
    .info-card .ghost { position: absolute; bottom: -30px; right: -10px; font-family: 'Jost', sans-serif; font-weight: 900; font-size: 150px; line-height: .7; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.06); text-transform: uppercase; pointer-events: none; }
    .info-card h3 { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: -.01em; position: relative; z-index: 2; }
    .info-card h3 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold); }
    .info-list { list-style: none; margin: 28px 0 0; display: flex; flex-direction: column; gap: 22px; position: relative; z-index: 2; }
    .info-row { display: flex; gap: 16px; align-items: flex-start; }
    .info-row .ic { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--gold); display: flex; align-items: center; justify-content: center; }
    .info-row .ic svg { width: 18px; height: 18px; }
    .info-row .k { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; }
    .info-row .v { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 15px; margin-top: 4px; color: var(--cream); line-height: 1.45; }
    .info-row .v a { color: var(--cream); text-decoration: none; transition: color .2s; }
    .info-row .v a:hover { color: var(--gold); }
    .info-socials { display: flex; gap: 10px; margin-top: 34px; position: relative; z-index: 2; }
    .info-socials a { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: all .25s; }
    .info-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-3px); }
    .info-socials svg { width: 18px; height: 18px; }

    /* ══════════════════════════════════════════════════════════
       MAP
    ══════════════════════════════════════════════════════════ */
    .mapsec { background: var(--cream); }
    .map-wrap { position: relative; padding: 0 44px 100px; }
    .map-frame { position: relative; height: 520px; overflow: hidden; border: 1px solid var(--gray-line); background: var(--purple-deep); }
    .map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(30%) contrast(1.05); }
    .map-pin-card { position: absolute; top: 32px; left: 32px; background: #fff; max-width: 340px; padding: 30px 32px 32px; box-shadow: 0 30px 60px -28px rgba(31,10,61,.5); z-index: 2; }
    .map-pin-card .lbl { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
    .map-pin-card h3 { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 22px; margin-top: 10px; color: var(--ink); letter-spacing: -.01em; }
    .map-pin-card p { font-size: 14px; line-height: 1.65; color: var(--gray); margin-top: 12px; }
    .map-dir { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); text-decoration: none; transition: gap .25s, color .25s; }
    .map-dir:hover { gap: 16px; color: var(--ink); }

    /* ══════════════════════════════════════════════════════════
       DEPARTMENTS / QUICK CONTACTS
    ══════════════════════════════════════════════════════════ */
    .depts { background: var(--purple-deep); color: var(--cream); }
    .depts .sec-title { color: var(--cream); }
    .depts .sec-title .serif-i { color: var(--gold); }
    .dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 0 44px 100px; }
    .dept-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); padding: 32px 30px 30px; transition: border-color .3s, background .3s, transform .3s; }
    .dept-card:hover { border-color: var(--gold); background: rgba(255,255,255,.07); transform: translateY(-5px); }
    .dept-card h3 { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 18px; color: var(--cream); }
    .dept-card p { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.6); margin-top: 10px; }
    .dept-card a { display: block; margin-top: 16px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--gold); text-decoration: none; transition: color .2s; word-break: break-word; }
    .dept-card a:hover { color: var(--cream); }

    /* ══════════════════════════════════════════════════════════
       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(110px, 22vw, 360px); 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) {
      .form-split { grid-template-columns: 1fr; gap: 28px; }
      .dept-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 920px) {
      .topbar, .nav-links { display: none; }
      .ahero-bottom { grid-template-columns: 1fr; gap: 30px; }
      .ahero-ctas { justify-content: flex-start; }
      .methods { grid-template-columns: 1fr 1fr; }
      .method:nth-child(2) { border-right: none; }
      .form-grid { grid-template-columns: 1fr; }
      .sec-header { padding: 64px 18px 36px; }
      .ahero, .form-split, .map-wrap, .dept-grid, .closing, .footer { padding-left: 18px; padding-right: 18px; }
      .form-split, .map-wrap, .dept-grid { padding-bottom: 64px; }
      .form-card { padding: 32px 24px 36px; }
      .map-pin-card { position: static; max-width: none; margin-bottom: 16px; box-shadow: none; border: 1px solid var(--gray-line); }
      .map-frame { height: 380px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      /* let long emails/addresses wrap instead of spilling past the card */
      .info-row { min-width: 0; }
      .info-row > * { min-width: 0; }
      .info-row .v { overflow-wrap: anywhere; }
    }
    @media (max-width: 560px) {
      .methods { grid-template-columns: 1fr; }
      .method { border-right: none; }
      .footer-top { grid-template-columns: 1fr; }
    }
  
    /* --- FAQ (AEO) --- */
    .faq { background: var(--ink); color: var(--cream); padding: 90px 0 96px; }
    .faq-wrap { max-width: 1160px; margin: 0 auto; padding: 0 44px; }
    .faq-eyebrow { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 12px; }
    .faq-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold); }
    .faq-title { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(34px, 5vw, 64px); line-height: .98; letter-spacing: -.02em; color: var(--cream); margin: 16px 0 44px; }
    .faq-title .serif-i { color: var(--gold); }
    .faq-list { border-top: 1px solid rgba(255,255,255,.12); }
    .faq-item { border-bottom: 1px solid rgba(255,255,255,.12); }
    .faq-q { width: 100%; background: transparent; border: none; padding: 24px 0; display: grid; grid-template-columns: 44px 1fr 40px; gap: 18px; align-items: center; cursor: pointer; text-align: left; transition: padding-left .3s; }
    .faq-q:hover { padding-left: 12px; }
    .faq-q-num { font-family: 'Jost', sans-serif; font-size: 13px; color: var(--gold); font-weight: 700; letter-spacing: .12em; }
    .faq-q-text { font-family: 'Jost', sans-serif; font-size: clamp(16px, 1.4vw, 20px); font-weight: 600; line-height: 1.35; color: var(--cream); letter-spacing: -.005em; }
    .faq-q-icon { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; transition: background .3s, border-color .3s, transform .3s; justify-self: end; flex-shrink: 0; }
    .faq-q-icon::before, .faq-q-icon::after { content: ''; position: absolute; background: var(--cream); transition: transform .3s, background .3s; }
    .faq-q-icon::before { width: 14px; height: 1px; } .faq-q-icon::after { width: 1px; height: 14px; }
    .faq-item.open .faq-q-icon { background: var(--gold); border-color: var(--gold); transform: rotate(180deg); }
    .faq-item.open .faq-q-icon::before, .faq-item.open .faq-q-icon::after { background: var(--ink); }
    .faq-item.open .faq-q-icon::after { transform: scaleY(0); }
    .faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s cubic-bezier(.32,.72,0,1); }
    .faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
    .faq-a { min-height: 0; overflow: hidden; }
    .faq-a-inner { padding: 0 0 28px 62px; max-width: 880px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.72); }
    .faq-a-inner strong { color: var(--gold); font-weight: 700; }
    .faq-a-inner a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }