    /* ============================================================
   CONCEPT — COLOR SWAP (MAROON + TEAL)
   Editorial newspaper. Typography is the design.
   Cream paper. Ruled columns. Print hierarchy.
   SSM Vietnam Summer Camp — Mobile First
   ============================================================ */

    :root {
      /* Brand Guideline Colors */
      --navy: #691C32;
      --navy-deep: #3D0F1C;
      --navy-ink: rgba(105, 28, 50, .85);
      --navy-rule: rgba(105, 28, 50, .20);
      --navy-tint: rgba(105, 28, 50, .06);

      --maroon: #002858;

      --gold: #71BAC1;

      --cream: #F8F1E0;
      --cream-dark: #EDE5CC;
      --cream-ink: #F2EBD5;

      /* Paper tones */
      --paper: #FAF6EE;
      --paper-warm: #F5EFE1;
      --ink: #1A1208;
      --ink-mid: #3D3020;
      --ink-lt: #7A6E5E;
      --rule: rgba(105, 28, 50, .12);
      --rule-lt: rgba(105, 28, 50, .22);

      /* Type */
      --zs: 'Zilla Slab', Georgia, serif;
      --is: 'Instrument Sans', sans-serif;
      --lr: 'Lora', Georgia, serif;

      /* Pricing table first-column width — shared by cap spacer, thead spacer, label, and post spacer */
      --eb-col-w: 32px;
    }

    /* Vietnamese font override — Merriweather has full diacritic support */
    html[lang="vi"] {
      --zs: 'Roboto Slab', Georgia, serif;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      font-size: 16px;
    }

    body {
      font-family: var(--lr);
      color: var(--ink);
      background: var(--paper);
      line-height: 1.7;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
    }

    /* ── UTILITY ── */
    .eyebrow {
      font-family: var(--is);
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .30em;
      text-transform: uppercase;
      color: var(--navy);
      display: block;
      margin-bottom: .6rem;
    }

    .eyebrow-inv {
      color: var(--cream-dark);
      opacity: .65;
    }

    .mob-br { display: none; }
    @media (max-width: 699px) { .mob-br { display: inline; } }
    .mob-hide { display: inline; }
    @media (max-width: 699px) { .mob-hide { display: none; } }
    .mob-show { display: none; }
    @media (max-width: 699px) { .mob-show { display: inline; } }

    /* Pull quote — broadsheet style */
    .pull-quote {
      font-family: var(--zs);
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-style: italic;
      font-weight: 400;
      color: var(--navy-ink);
      line-height: 1.45;
      border-top: 1.5px solid var(--navy);
      border-bottom: 1.5px solid var(--navy);
      padding: .9rem 0;
      margin: 1.5rem 0;
    }

    /* ── BUTTONS ── */
    .btn {
      font-family: var(--is);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: .85rem 1.9rem;
      display: inline-block;
      transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .btn-maroon {
      background: var(--maroon);
      color: var(--cream);
    }

    .btn-maroon:hover {
      background: #001533;
      color: var(--gold);
      transform: translateY(-6px);
      box-shadow: 0 12px 16px rgba(0, 40, 88, .3);
    }

    .btn-cream {
      background: var(--cream);
      color: var(--navy);
    }

    .btn-cream:hover {
      background: var(--cream-dark);
      color: var(--gold);
      transform: translateY(-6px);
      box-shadow: 0 12px 16px rgba(0, 0, 0, .12);
    }

    /* ── REVEALS ── */
    .rv {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .rv.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .d1 {
      transition-delay: .10s;
    }

    .d2 {
      transition-delay: .20s;
    }

    .d3 {
      transition-delay: .30s;
    }

    .d4 {
      transition-delay: .40s;
    }

    /* ============================================================
   NAV — Broadsheet masthead-style
   ============================================================ */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      background: var(--navy);
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      transition: transform .4s ease, box-shadow .4s ease;
    }

    #nav.scrolled {
      box-shadow: 0 2px 20px rgba(0, 0, 0, .28);
    }

    .nav__bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: .65rem 5%;
      position: relative;
    }

    .nav__logo img {
      height: 32px;
    }

    /* ── SSM Logo Lockup ─────────────────────────────────────── */
    .ssm-lockup {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 40px;
    }

    .ssm-lockup__crest {
      height: 100% !important;
      width: auto !important;
    }

    .ssm-lockup__divider {
      width: 1px;
      height: 75%;
      background: rgba(255,255,255,.30);
      flex-shrink: 0;
    }

    .ssm-lockup__text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 0;
    }

    .ssm-lockup__name {
      white-space: nowrap;
      font-family: 'Bitter', Georgia, serif;
      font-size: .68rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: .22em;
      line-height: 1.2;
      text-transform: uppercase;
    }
    .ssm-lockup__name:nth-child(2) { letter-spacing: .10em; }

    .ssm-lockup--zilla .ssm-lockup__name { font-family: 'Zilla Slab', Georgia, serif; }
    .ssm-lockup--roboto .ssm-lockup__name { font-family: 'Roboto Slab', Georgia, serif; }

    .ssm-lockup__rule {
      width: 100%;
      height: 1px;
      background: rgba(255,255,255,.30);
      margin: 3px 0;
    }

    .ssm-lockup__sub {
      font-family: var(--is);
      font-size: .46rem;
      font-weight: 600;
      color: rgba(255,255,255,.80);
      letter-spacing: .20em;
      text-transform: uppercase;
    }

    @media (max-width: 919px) {
      .ssm-lockup {
        height: 32px;
        gap: 6px;
      }
      .ssm-lockup__name { font-size: .58rem; letter-spacing: .18em; }
      .ssm-lockup__sub  { font-size: .40rem; }
    }

    /* ── SSM Lockup — Hero variant ───────────────────────────── */
    .ssm-lockup--hero {
      height: auto;
      max-width: 700px;
      width: 100%;
      margin: 0 auto;
      padding: min(1.5vw, .8rem) min(2vw, 1.2rem);
      gap: min(2.5vw, 1.4rem);
      align-items: flex-start;
    }

    /* --- Lockup entrance animations --- */
    .ssm-lockup--hero .ssm-lockup__crest {
      opacity: 0;
      animation: lockupCrest .8s cubic-bezier(0.22, 1, 0.36, 1) 1.7s forwards;
    }
    .ssm-lockup--hero .ssm-lockup__divider {
      animation: lockupDivider .5s ease 2.0s forwards;
      transform-origin: top center;
      transform: scaleY(0);
    }
    .ssm-lockup--hero .ssm-lockup__name:nth-child(1) {
      opacity: 0;
      animation: lockupSlide .6s cubic-bezier(0.22, 1, 0.36, 1) 2.2s forwards;
    }
    .ssm-lockup--hero .ssm-lockup__name:nth-child(2) {
      opacity: 0;
      animation: lockupSlide .6s cubic-bezier(0.22, 1, 0.36, 1) 2.3s forwards;
    }
    .ssm-lockup--hero .ssm-lockup__rule {
      opacity: 0;
      transform: scaleX(0);
      transform-origin: center;
      animation: lockupRule .5s ease 2.5s forwards;
    }
    .ssm-lockup--hero .ssm-lockup__sub {
      opacity: 0;
      animation: lockupSub .8s cubic-bezier(0.22, 1, 0.36, 1) 2.7s forwards;
    }

    @keyframes lockupCrest {
      from { opacity: 0; transform: translateY(12px) scale(.94); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes lockupDivider {
      from { transform: scaleY(0); }
      to   { transform: scaleY(1); }
    }
    @keyframes lockupSlide {
      from { opacity: 0; transform: translateX(-18px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes lockupRule {
      from { opacity: 0; transform: scaleX(0); }
      to   { opacity: 1; transform: scaleX(1); }
    }
    @keyframes lockupSub {
      from { opacity: 0; letter-spacing: .1em; }
      to   { opacity: 1; letter-spacing: .75em; }
    }

    .ssm-lockup--hero .ssm-lockup__crest {
      height: min(22vw, 192px) !important;
      width: auto !important;
      filter: drop-shadow(2px 4px 5px rgba(0,0,0,.50));
    }

    .ssm-lockup--hero .ssm-lockup__divider {
      background: rgba(255,255,255,.30);
      width: 4px;
      height: 40%;
    }

    .ssm-lockup--hero .ssm-lockup__name {
      font-size: min(8.5vw, 4rem);
      color: #fff;
      letter-spacing: .20em;
      line-height: 1.12;
    }
    .ssm-lockup--hero .ssm-lockup__name:nth-child(2) { letter-spacing: .10em; }

    .ssm-lockup--hero .ssm-lockup__rule {
      background: #fff;
      margin: min(.6vw, .4rem) 0 min(1.2vw, .8rem);
      height: 3px;
      width: 75%;
      align-self: center;
    }

    .ssm-lockup--hero .ssm-lockup__sub {
      font-size: min(2.4vw, 1.5rem);
      font-weight: 700;
      color: rgba(255,255,255,.85);
      letter-spacing: .75em;
    }

    @media (max-width: 699px) {
      .ssm-lockup--hero .ssm-lockup__name { font-size: min(9vw, 2rem); }
      .ssm-lockup--hero .ssm-lockup__sub  { font-size: min(3.5vw, 1.1rem); letter-spacing: .50em; }
      .ssm-lockup--hero .ssm-lockup__crest { height: min(25vw, 144px) !important; }
      .ssm-lockup--hero .ssm-lockup__rule { height: 2px; }
    }

    .nav__links {
      display: none;
      list-style: none;
      gap: 1.8rem;
    }

    .nav__links a {
      font-family: var(--is);
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--cream);
      transition: color .25s;
    }

    .nav__links a:hover {
      color: #71BAC1;
    }

    .nav__cta {
      display: none;
      font-family: var(--is);
      font-size: .63rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--cream);
      background: var(--maroon);
      padding: .5rem 1.2rem;
      transition: background .25s;
    }

    .nav__cta:hover {
      background: #001533;
    }

    .nav__ham {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 6px;
    }

    .nav__ham span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--cream);
    }

    /* Mobile drawer */
    .mob-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(26, 12, 8, .55);
      z-index: 950;
      opacity: 0;
      transition: opacity .3s;
    }

    .mob-overlay.on {
      opacity: 1;
    }

    .mob-drawer {
      position: fixed;
      top: 0;
      right: 0;
      transform: translateX(100%);
      visibility: hidden;
      width: min(82%, 320px);
      height: 100dvh;
      background: var(--paper-warm);
      z-index: 960;
      padding: 2rem 1.8rem;
      transition: transform .4s cubic-bezier(.4, 0, .2, 1), visibility 0s .4s;
      border-left: 3px solid var(--navy);
      overflow-y: auto;
    }

    .mob-drawer.on {
      transform: translateX(0);
      visibility: visible;
      transition: transform .4s cubic-bezier(.4, 0, .2, 1), visibility 0s 0s;
    }

    .mob-close {
      position: absolute;
      top: 1.1rem;
      right: 1.2rem;
      font-size: 1.6rem;
      color: var(--ink-lt);
      line-height: 1;
    }

    .mob-drawer ul {
      list-style: none;
      margin-top: 3.5rem;
    }

    .mob-drawer ul li a {
      display: block;
      font-family: var(--is);
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: .30em;
      text-transform: uppercase;
      color: var(--ink-mid);
      padding: 1rem 0;
      border-bottom: 1px solid var(--rule-lt);
      transition: color .25s;
    }

    .mob-drawer ul li a:hover {
      color: var(--navy);
    }

    /* ── LANGUAGE SELECTOR ── */
    .lang-select {
      position: absolute;
      left: 0;
      right: 0;
      width: max-content;
      margin: 0 auto;
      z-index: 10;
    }

    .lang-select__btn {
      display: flex;
      align-items: center;
      gap: .4rem;
      font-family: var(--is);
      font-size: .60rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(248, 241, 224, .75);
      background: rgba(105, 28, 50, .85);
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 999px;
      padding: .28rem .65rem;
      cursor: pointer;
      transition: border-color .2s, color .2s, background .2s;
      line-height: 1.4;
    }

    .lang-select__btn:hover {
      border-color: var(--cream);
      color: var(--cream);
    }

    .lang-select__chevron {
      transition: transform .2s;
      flex-shrink: 0;
    }

    .lang-select.open .lang-select__chevron {
      transform: rotate(180deg);
    }

    .lang-select__dropdown {
      display: none;
      position: absolute;
      top: calc(100% + .35rem);
      left: 50%;
      transform: translateX(-50%);
      background: var(--paper);
      border: 1px solid var(--rule);
      box-shadow: 0 8px 24px rgba(105, 28, 50, .10);
      min-width: 200px;
      z-index: 1000;
      padding: .25rem 0;
    }

    .lang-select.open .lang-select__dropdown {
      display: block;
    }

    .lang-select__option {
      display: flex;
      align-items: center;
      gap: .55rem;
      width: 100%;
      padding: .5rem .9rem;
      font-family: var(--is);
      font-size: .60rem;
      font-weight: 600;
      letter-spacing: .02em;
      color: var(--ink-lt);
      opacity: .38;
      cursor: not-allowed;
      background: none;
      border: none;
      text-align: left;
      white-space: nowrap;
    }

    .lang-select__option--active {
      opacity: 1;
      cursor: default;
      color: var(--navy);
    }

    .lang-select__option:not(.lang-select__option--disabled):not(.lang-select__option--active) {
      opacity: .75;
      cursor: pointer;
      color: var(--ink);
    }
    .lang-select__option:not(.lang-select__option--disabled):not(.lang-select__option--active):hover {
      opacity: 1;
      color: var(--navy);
    }

    .lang-flag {
      display: inline-block;
      width: 1.75em;
      height: 1.75em;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
      vertical-align: middle;
    }
    .fi-cn.lang-flag {
      background-position: 5% center;
    }
    .fi-tw.lang-flag,
    .lang-zh {
      background-image: none;
      background-color: var(--maroon);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .68rem;
      font-weight: 700;
      font-style: normal;
      line-height: 1;
      font-family: system-ui, sans-serif;
      text-indent: 0;
    }
    .fi-tw.lang-flag::after {
      content: '文';
    }

    #langSelectMobile {
      display: none;
    }

    @media (max-width: 919px) {
      .nav__bar {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
      }

      .nav__logo {
        grid-column: 1;
      }

      #langSelectMobile {
        display: block;
        position: static;
        grid-column: 2;
        justify-self: center;
        margin-left: 5.5rem;
      }

      .nav__ham {
        grid-column: 3;
        justify-self: end;
      }

      #langSelectDesktop {
        display: none;
      }
    }

    @media (min-width: 920px) {
      .nav__bar {
        justify-content: flex-start;
        gap: 0;
      }

      .nav__links {
        display: flex;
        margin-left: auto;
      }

      .nav__cta {
        display: inline-flex;
        align-items: center;
        margin-left: 2rem;
        margin-right: 2rem;
      }

      .nav__ham {
        display: none;
      }

      .lang-select--desktop {
        position: relative;
        transform: none;
      }

      .lang-select--desktop .lang-select__dropdown {
        left: auto;
        right: 0;
        transform: none;
      }
    }

    /* ============================================================
   HERO — Full-bleed kinetic poster
   ============================================================ */
    .hero {
      min-height: 100dvh;
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }


    /* Diagonal stripe accent */
    .hero__stripe {
      position: absolute;
      top: 0;
      bottom: 0;
      right: -5%;
      width: 42%;
      background: linear-gradient(105deg, transparent 0%, rgba(105, 28, 50, .22) 100%);
      transform: skewX(-8deg);
      pointer-events: none;
      z-index: 1;
    }

    /* Hero Background (final state at 5%) */
    .hero__crest-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center bottom;
      opacity: .05;
      z-index: 0;
      pointer-events: none;
    }

    .hero__content {
      position: relative;
      z-index: 5;
      padding: clamp(3rem, 6vw, 4.5rem) 5% clamp(3rem, 6vw, 5rem);
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    /* Main headline */
    .hero h1 {
      font-family: var(--zs);
      font-size: clamp(3.8rem, 10vw, 8rem);
      font-weight: 700;
      line-height: .95;
      color: var(--cream);
      letter-spacing: -.025em;
      margin-bottom: .5rem;
    }

    /* SSM Vietnam Summer Camp — 2-line small caps title */
    .hero__title {
      font-variant: small-caps;
      font-size: clamp(2.2rem, 6.75vw, 5.6rem);
      line-height: 1.05;
      letter-spacing: .01em;
    }

    /* Tagline */
    .hero__tagline {
      font-family: var(--zs);
      font-style: italic;
      font-weight: 400;
      color: var(--cream);
      font-size: clamp(1.3rem, 2.6vw, 2rem);
      margin-bottom: 2.2rem;
      display: flex;
      gap: 0;
      justify-content: center;
      flex-wrap: wrap;
    }
    .tl-p1 {
      opacity: 0;
      animation: slideIn .9s ease 3.9s forwards;
    }
    .tl-p2 {
      font-weight: 700;
      opacity: 0;
      animation: fadeInSlow 1.25s ease 4.6s forwards;
    }
    @keyframes fadeInSlow {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* Stats bar — inline kinetic numbers */
    .hero__stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem 3rem;
      margin-bottom: 2.5rem;
      border-top: 1px solid rgba(248, 241, 224, .10);
      border-bottom: 1px solid rgba(248, 241, 224, .10);
      padding: 1.2rem 0;
      opacity: 0;
      animation: slideIn .9s ease 3.0s forwards;
    }

    .hero__stat .val {
      font-family: var(--zs);
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 700;
      color: var(--cream);
      line-height: 1.1;
      display: block;
    }

    @media (min-width: 700px) {
      .hero__stats {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 699px) {
      .hero__stats .hero__stat:nth-child(1) { order: 1; } /* 3 Sessions   → C1 R1 */
      .hero__stats .hero__stat:nth-child(2) { order: 2; } /* 100%         → C2 R1 */
      .hero__stats .hero__stat:nth-child(3) { order: 5; } /* K–9 Students → C1 R3 */
      .hero__stats .hero__stat:nth-child(4) { order: 3; } /* 2 Weeks      → C1 R2 */
      .hero__stats .hero__stat:nth-child(5) { order: 6; } /* On Campus    → C2 R3 */
      .hero__stats .hero__stat:nth-child(6) { order: 4; } /* International→ C2 R2 */

      .hero__tagline { margin-bottom: 1rem; }
      .hero__stats   { margin-bottom: 1.2rem; gap: .8rem 1.5rem; }
    }

    .hero__stat .lbl {
      font-family: var(--is);
      font-size: .60rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(248, 241, 224, .38);
      margin-top: .2rem;
      display: block;
    }

    /* Hero CTAs */
    .hero__cta-bottom {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.4rem;
      opacity: 0;
      animation: slideIn .9s ease 3.5s forwards;
    }

    .hero__cta-bottom .btn {
      min-width: 220px;
      text-align: center;
    }

    @media (max-width: 699px) {
      .hero__cta-bottom {
        flex-direction: column;
        align-items: center;
      }
    }

    .hero__sessions {
      display: flex;
      gap: .8rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 1.4rem;
      opacity: 0;
      animation: slideIn .9s ease 3.4s forwards;
    }

    .sess-pill {
      background: rgba(248, 241, 224, .07);
      border: 1px solid rgba(248, 241, 224, .12);
      border-left: 3px solid #8a2541;
      padding: 1rem 1.5rem;
      clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }

    .sess-pill .sp-label {
      font-family: var(--is);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .20em;
      text-transform: uppercase;
      color: rgba(248, 241, 224, .40);
      display: block;
      margin-bottom: .2rem;
    }

    .sess-pill .sp-date {
      font-family: var(--zs);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--cream);
      line-height: 1.25;
    }

    @media (max-width: 699px) {
      .hero__sessions {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }
      .sess-pill:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
      }
      .sess-pill {
        padding: .55rem .75rem;
      }
      .sess-pill .sp-label {
        font-size: .62rem;
      }
      .sess-pill .sp-date {
        font-size: .88rem;
      }
    }

    @keyframes introCrest {
      0%   { opacity: 0; transform: scale(1.0); }
      15%  { opacity: 1; transform: scale(1.0); }
      65%  { opacity: 1; transform: scale(1.04); }
      100% { opacity: 0; transform: scale(1.12); }
    }

    .hero__intro-logo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center bottom;
      z-index: 10;
      pointer-events: none;
      animation: introCrest 1.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @media (max-width: 699px) {
      .hero__intro-logo,
      .hero__crest-bg {
        object-position: 12% 0%;
        transform: scale(1.15);
        transform-origin: left top;
      }
      .hero__intro-logo {
        animation-name: introCrestMob;
      }
    }

    @keyframes introCrestMob {
      0%   { opacity: 0; transform: scale(1.15); }
      15%  { opacity: 1; transform: scale(1.15); }
      65%  { opacity: 1; transform: scale(1.20); }
      100% { opacity: 0; transform: scale(1.28); }
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(-24px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* ============================================================
   QUICK FAQs — Numbered cards on cream
   ============================================================ */
    .qfaq {
      background: var(--navy);
      padding: clamp(4rem, 7vw, 6rem) 5% clamp(2rem, 3.5vw, 3rem);
      position: relative;
      overflow: hidden;
    }

    .qfaq::before {
      content: '';
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 48px,
        rgba(248,241,224,.02) 48px,
        rgba(248,241,224,.02) 49px
      );
      pointer-events: none;
    }

    .qfaq__inner {
      max-width: 960px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .qfaq__head {
      margin-bottom: 3rem;
    }

    .qfaq__eyebrow {
      font-family: var(--is);
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--cream);
      opacity: 1;
      margin-bottom: .6rem;
      display: block;
    }

    .qfaq__head h2 {
      font-family: var(--zs);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.06;
      letter-spacing: -.01em;
      margin-bottom: .5rem;
    }

    .qfaq__head h2 em {
      font-weight: 700;
      font-style: italic;
      color: var(--cream);
    }

    .qfaq__head p {
      font-family: var(--lr);
      font-size: 1rem;
      color: var(--cream);
      line-height: 1.80;
    }

    .qfaq__list {
      border-top: 1px solid rgba(248,241,224,.08);
    }

    .qa-item {
      border-bottom: 1px solid rgba(248,241,224,.06);
    }

    .qa-item__trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.2rem 0;
      cursor: pointer;
      text-align: left;
      background: none;
      border: none;
    }

    .qa-item__trigger h3 {
      font-family: var(--is);
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: .03em;
      color: var(--cream);
      transition: color .25s;
    }

    .qa-item__trigger:hover h3 {
      color: #fff;
    }

    .qa-item__icon {
      flex-shrink: 0;
      width: 28px; height: 28px;
      border: 1px solid rgba(248,241,224,.15);
      display: flex; align-items: center; justify-content: center;
      clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
      transition: background .25s, border-color .25s;
    }

    .qa-item__trigger:hover .qa-item__icon,
    .qa-item.open .qa-item__icon {
      background: var(--maroon);
      border-color: var(--maroon);
    }

    .qa-item__icon svg {
      width: 12px; height: 12px;
      stroke: rgba(248,241,224,.55);
      fill: none;
      transition: transform .3s, stroke .25s;
      stroke-width: 2;
    }

    .qa-item__trigger:hover .qa-item__icon svg,
    .qa-item.open .qa-item__icon svg {
      stroke: var(--cream);
    }

    .qa-item.open .qa-item__icon svg {
      transform: rotate(45deg);
    }

    .qa-item__body {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .35s ease;
    }

    .qa-item.open .qa-item__body {
      grid-template-rows: 1fr;
    }

    .qa-item__body-inner {
      overflow: hidden;
      padding-bottom: 0;
      transition: padding-bottom .35s ease;
    }

    .qa-item.open .qa-item__body-inner {
      padding-bottom: 1.2rem;
    }

    .qa-item__body p {
      font-family: var(--lr);
      font-size: .96rem;
      color: var(--cream);
      line-height: 1.80;
    }

    .qfaq__cta {
      margin-top: 2.5rem;
    }

    /* ============================================================
   THE PROGRAM — Editorial magazine layout
   Typography-driven. No image grid. Light background.
   ============================================================ */
    .program {
      background: var(--cream);
      padding: clamp(2rem, 4vw, 3rem) 5%;
      border-top: 3px double var(--navy);
    }

    .program__inner {
      max-width: 960px;
      margin: 0 auto;
    }

    /* Section opener — broadsheet style */
    .program__opener {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .program__headline {
      font-family: var(--zs);
      font-size: clamp(2rem, 5vw, 3.6rem);
      font-weight: 300;
      color: var(--navy);
      line-height: 1.05;
      letter-spacing: -.015em;
    }

    .program__headline em {
      font-weight: 700;
      font-style: italic;
      color: var(--ink);
      display: block;
      text-align: center;
    }

    .program__intro-text {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 1rem;
    }

    /* Four pillars — metallic navy cards */
    .program__pillars {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .pillar {
      display: block;
      position: relative;
      overflow: hidden;
      padding: 2.2rem 2rem;
      border-radius: 5px;
      background: var(--paper);
      border: 1px solid var(--rule);
      box-shadow: 0 2px 8px rgba(0,20,40,0.08);
      transition: transform 0.35s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    }

    /* Metallic gradient layer — fades in on hover */
    .pillar::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        125deg,
        #370d1a 0%, #4a1124 22%, #5a1530 40%,
        #691C32 52%, #5a1530 64%, #4a1124 82%, #370d1a 100%
      );
      opacity: 0;
      transition: opacity 0.45s ease;
      border-radius: 5px;
      z-index: 0;
    }

    .pillar:hover::before {
      opacity: 1;
    }

    .pillar:hover {
      transform: translateY(-3px);
      border-color: transparent;
      box-shadow: 0 10px 36px rgba(0,20,40,0.4), inset 0 1px 0 rgba(184,204,219,0.28);
    }

    /* All content above the gradient layer */
    .pillar h3,
    .pillar p,
    .pillar__img {
      position: relative;
      z-index: 1;
    }

    .pillar__num {
      position: absolute;
      bottom: -.5rem;
      right: .6rem;
      font-family: var(--zs);
      font-size: clamp(4rem, 8vw, 6rem);
      font-weight: 700;
      color: var(--navy);
      opacity: 0.15;
      line-height: 1;
      pointer-events: none;
      user-select: none;
      z-index: 2;
      transition: color 0.45s ease, opacity 0.45s ease;
    }

    .pillar:hover .pillar__num {
      color: #E8F0F5;
      opacity: 0.5;
    }

    .pillar h3 {
      font-family: var(--zs);
      font-size: clamp(1.2rem, 2.2vw, 1.65rem);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: .8rem;
      transition: color 0.45s ease;
    }

    .pillar:hover h3 {
      color: #E8F0F5;
    }

    .pillar__img {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 3px;
      margin-bottom: 1.2rem;
      background: rgba(255, 255, 255, .10);
    }

    .pillar__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s;
    }

    .pillar:hover .pillar__img img {
      transform: scale(1.03);
    }

    .pillar p {
      font-family: var(--lr);
      font-size: .97rem;
      color: var(--ink-mid);
      line-height: 1.85;
      margin-bottom: .8rem;
      transition: color 0.45s ease;
    }

    .pillar p:last-child {
      margin-bottom: 0;
    }

    .pillar:hover p {
      color: #b8ceda;
    }

    /* ============================================================
   SCHEDULE — Clean HTML table, broadsheet edition
   ============================================================ */
    .schedule {
      background: var(--cream);
      padding: clamp(4rem, 7vw, 6rem) 5% clamp(2rem, 3.5vw, 3rem);
      border-top: 3px double var(--navy);
    }

    .schedule__inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .schedule__head {
      margin-bottom: 2.5rem;
      text-align: left;
    }

    .schedule__head h2 {
      font-family: var(--zs);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 300;
      color: var(--navy);
      line-height: 1.08;
      margin-bottom: .4rem;
    }

    .schedule__head h2 em {
      font-style: italic;
      font-weight: 700;
      color: var(--ink);
    }

    .schedule__head p {
      font-family: var(--lr);
      font-size: .96rem;
      color: var(--ink-mid);
      line-height: 1.80;
      margin: 0 auto;
    }

    .schedule__tables {
      max-width: 660px;
      margin: 0 auto;
    }

    .dorm-acc {
      max-width: 660px;
      margin: 2rem auto 0;
    }

    .sched-table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid var(--navy);
      border-top: none;
    }

    .sched-table thead tr {
      background: var(--maroon);
    }

    .sched-table .sched-th {
      font-family: var(--is);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--cream);
      padding: .9rem 1.2rem;
      text-align: left;
    }

    .sched-table .sched-th--time {
      width: 96px;
      border-right: 1px solid rgba(248,241,224,.50);
    }

    .sched-th__note {
      font-weight: 400;
      letter-spacing: .03em;
      text-transform: none;
      opacity: .72;
      font-style: italic;
    }

    .sched-table tr {
      border-bottom: 1px solid var(--navy);
    }

    .sched-table tbody tr:last-child {
      border-bottom: none;
    }

    .sched-table tbody tr:hover td {
      background: rgba(105, 28, 50, .04);
    }

    .sched-table td {
      padding: .8rem 1.2rem;
      font-family: var(--is);
      font-size: .875rem;
      color: var(--ink);
      vertical-align: top;
      background: transparent;
      transition: background .15s;
    }

    .sched-table .td-time {
      font-family: var(--is);
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .04em;
      color: var(--navy);
      white-space: nowrap;
      width: 96px;
      border-right: 1px solid var(--navy);
      vertical-align: middle;
    }

    .sched-table .td-event strong {
      color: var(--maroon);
      font-weight: 700;
    }

    .td-detail {
      display: block;
      font-size: .78rem;
      color: rgba(26,18,8,.48);
      font-style: italic;
      margin-top: .15rem;
    }

    .sched-table .tr-core td {
      background: rgba(105, 28, 50, .05);
    }

    .sched-table .tr-core:hover td {
      background: rgba(105, 28, 50, .09) !important;
    }

    .sched-table .tr-break td {
      background: rgba(26,18,8,.025);
      font-style: italic;
      color: rgba(26,18,8,.52);
    }

    .sched-table .tr-break .td-time {
      color: rgba(105, 28, 50, .50);
    }

    .sched-table .tr-aftercare td {
      background: rgba(113, 186, 193, .15);
      text-align: center;
      font-weight: 700;
    }

    .sched-note {
      font-family: var(--lr);
      font-style: italic;
      font-size: .85rem;
      color: var(--ink);
      margin-top: .75rem;
      line-height: 1.65;
      text-align: center;
      max-width: 660px;
      margin-left: auto;
      margin-right: auto;
    }

    .sched-note--dorm {
      margin-top: .75rem;
    }

    /* Dorm accordion */
    .dorm-acc {
      margin-top: 2rem;
      border: 1px solid var(--navy);
    }

    .dorm-acc__trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.2rem;
      background: var(--maroon);
      border: none;
      border-left: 4px solid var(--navy);
      cursor: pointer;
      text-align: left;
      transition: background .3s, color .3s;
    }

    .dorm-acc__trigger:hover {
      background: rgba(0, 40, 88, .85);
    }

    .dorm-acc.open .dorm-acc__trigger {
      background: var(--paper);
    }

    .dorm-acc.open .dorm-acc__trigger:hover {
      background: rgba(105, 28, 50, .05);
    }

    .dorm-acc__label {
      font-family: var(--is);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .10em;
      text-transform: uppercase;
      color: var(--cream);
      transition: color .3s;
    }

    .dorm-acc.open .dorm-acc__label {
      color: var(--navy);
    }

    .dorm-acc__icon {
      display: flex;
      align-items: center;
      transition: transform .35s ease;
      flex-shrink: 0;
      margin-left: 1rem;
    }

    .dorm-acc__icon svg path {
      stroke: var(--cream);
      transition: stroke .3s;
    }

    .dorm-acc.open .dorm-acc__icon {
      transform: rotate(180deg);
    }

    .dorm-acc.open .dorm-acc__icon svg path {
      stroke: var(--navy);
    }

    .dorm-acc__body {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .35s ease;
      overflow: hidden;
    }

    .dorm-acc.open .dorm-acc__body {
      grid-template-rows: 1fr;
    }

    .dorm-acc__body-inner {
      overflow: hidden;
    }

    /* Pulse animation — fires 3× on load to draw attention */
    @keyframes chevronBounce {
      0%, 100% { transform: translateY(0); }
      30%       { transform: translateY(5px); }
      50%       { transform: translateY(-2px); }
      70%       { transform: translateY(3px); }
      85%       { transform: translateY(-1px); }
    }

    .dorm-acc:not(.open) .dorm-acc__icon {
      animation: chevronBounce 2.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) 1.5s infinite;
    }

    .sched-table--dorm {
      border-left: none;
      border-right: none;
      border-bottom: none;
      border-top: none;
    }

    /* ============================================================
   MENTORSHIP — Typographic, no image bleed
   ============================================================ */
    .mentorship {
      background: var(--paper);
      padding: clamp(4rem, 7vw, 6rem) 5%;
      border-top: 3px double var(--navy);
    }

    .mentorship__inner {
      max-width: 960px;
      margin: 0 auto;
      padding-bottom: 3rem;
    }

    .mentorship__layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }

    .mentorship__lead h2 {
      font-family: var(--zs);
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 300;
      color: var(--navy);
      line-height: 1.06;
      margin-bottom: .5rem;
    }

    .mentorship__lead h2 em {
      font-weight: 700;
      font-style: italic;
      color: var(--ink);
    }

    .mentorship__lead p {
      font-family: var(--lr);
      font-size: 1rem;
      color: var(--ink-mid);
      line-height: 1.85;
      margin-bottom: .9rem;
    }

    /* Passport block — newspaper sidebar */
    .passport-sidebar {
      background: var(--cream);
      border: 1px solid var(--rule);
      border-top: 3px solid var(--navy);
      padding: 1.4rem 1.6rem;
    }

    .passport-sidebar h3 {
      font-family: var(--is);
      font-size: .66rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: .6rem;
    }

    .passport-sidebar p {
      font-family: var(--lr);
      font-size: .92rem;
      color: var(--ink-mid);
      line-height: 1.75;
    }

    /* Mobile accordion — Goal Passport & Device Policy */
    .mob-accordion .mob-acc__trigger {
      display: none;
    }

    .mob-acc__body {
      display: block;
    }

    @media (max-width: 699px) {
      .mob-accordion .mob-acc__trigger {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0;
        margin-bottom: 0;
        cursor: pointer;
        background: none;
        border: none;
        text-align: left;
        font-family: var(--is);
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .03em;
        color: var(--navy);
      }

      /* Override icon colors for light card backgrounds */
      .mob-accordion .mob-acc__trigger .qa-item__icon {
        border-color: rgba(105,28,50,.3);
      }

      .mob-accordion .mob-acc__trigger .qa-item__icon svg {
        stroke: var(--navy);
      }

      .mob-accordion.open .mob-acc__trigger .qa-item__icon {
        background: var(--navy);
        border-color: var(--navy);
      }

      .mob-accordion.open .mob-acc__trigger .qa-item__icon svg {
        stroke: var(--cream);
        transform: rotate(45deg);
      }

      .mob-accordion .mob-acc__body {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows .35s ease;
      }

      .mob-accordion.open .mob-acc__body {
        grid-template-rows: 1fr;
      }

      .mob-acc__body-inner {
        overflow: hidden;
        padding-top: 0;
        transition: padding-top .35s ease;
      }

      .mob-accordion.open .mob-acc__body-inner {
        padding-top: .8rem;
      }

      .mob-accordion .desk-h4 {
        display: none;
      }
    }

    /* Campus life — inline list */
    .section-cta {
      margin-top: 2rem;
      text-align: center;
    }

    .campus-life {
      margin-top: 3rem;
    }

    .campus-life h3 {
      font-family: var(--zs);
      font-size: clamp(1.3rem, 2.5vw, 1.9rem);
      font-weight: 300;
      color: var(--navy);
      margin-bottom: .5rem;
    }

    .campus-life h3 em {
      font-weight: 700;
      font-style: italic;
      color: var(--ink);
    }

    .cl-columns {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      margin-top: 1.5rem;
      border-top: 2px solid var(--navy);
    }

    .campus-life__img {
       width: 100%;
       height: 200px;
       overflow: hidden;
       border-radius: 3px;
       background: rgba(255, 255, 255, .10);
    }

    .campus-life__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s;
    }

    .campus-life:hover .campus-life__img img {
      transform: scale(1.03);
    }

    .cl-col {
      padding: 1.4rem 0;
      border-bottom: 1px solid rgba(105,28,50,.30);
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 1.1rem;
      align-items: start;
    }

    .cl-col:last-child {
      border-bottom: none;
    }

    .cl-col__num {
      font-family: var(--zs);
      font-size: 1.5rem;
      font-weight: 700;
      color: #71BAC1;
      opacity: .67;
      line-height: 1;
      text-align: right;
    }

    .cl-col__body h3 {
      font-family: var(--is);
      font-size: .80rem;
      font-weight: 700;
      letter-spacing: .04em;
      color: var(--ink);
      margin-bottom: .25rem;
    }

    .cl-col__body p {
      font-family: var(--lr);
      font-size: .90rem;
      color: var(--ink-mid);
      line-height: 1.65;
    }

    @media (min-width: 800px) {
      .mentorship__layout {
        grid-template-columns: 1.5fr 1fr;
      }

      .cl-columns {
        grid-template-columns: 1fr 1fr;
      }

      .cl-col:nth-child(odd) {
        border-right: 1px solid rgba(105,28,50,.30);
        padding-right: 1.8rem;
      }

      .cl-col:nth-child(even) {
        padding-left: 1.8rem;
      }

      .cl-col:nth-last-child(-n+2) {
        border-bottom: none;
      }
    }

    /* Embedded inside mentorship section — full-bleed navy band */
    .staff__embed {
      background: var(--navy);
      padding: clamp(3rem, 6vw, 5rem) 5% clamp(2.25rem, 4.5vw, 3.75rem);
      margin: 0 -5%;
      /* bleed beyond mentorship inner padding */
    }

    .staff__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .staff-card__img {
      aspect-ratio: 3/4;
      overflow: hidden;
      background: rgba(255, 255, 255, .10);
      margin-bottom: .65rem;
      border: none;
    }

    .staff-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .staff-card h3 {
      font-family: var(--is);
      font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
      font-weight: 700;
      color: var(--cream);
      letter-spacing: .04em;
    }

    .staff-card p {
      font-family: var(--lr);
      font-size: .76rem;
      color: rgba(248, 241, 224, .75);
      margin-top: .2rem;
    }

    @media (min-width: 600px) {
      .staff__grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* ============================================================
   CORE PROGRAMS — Prospectus list
   NOT cards. A numbered contents-page list.
   ============================================================ */
    .core {
      background: var(--paper);
      padding: clamp(2rem, 4vw, 3rem) 5%;
      border-top: 3px double var(--navy);
    }

    .core__inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .core__head {
      margin-bottom: 1.25rem;
    }

    .core__head h2 {
      font-family: var(--zs);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 300;
      color: var(--navy);
      line-height: 1.08;
      margin-bottom: .4rem;
    }

    .core__head h2 em {
      font-style: italic;
      font-weight: 700;
      color: var(--ink);
    }

    .core__head p {
      font-family: var(--lr);
      font-size: .96rem;
      color: var(--ink-mid);
      line-height: 1.80;
      max-width: 540px;
    }

    /* Core Gallery — Filmstrip Style (touching boxes) */
    .core-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      margin-top: 1.25rem;
      margin-bottom: 0.875rem;
      border-left: 7px solid var(--navy);
    }

    .core-gallery__item {
      aspect-ratio: 1/1;
      overflow: hidden;
      background: rgba(255, 255, 255, .1);
      border-right: 7px solid var(--navy);
    }

    .core-gallery__item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s cubic-bezier(0.33, 1, 0.68, 1);
    }

    .core-gallery__item:hover img {
      transform: scale(1.06);
    }

    @media (min-width: 780px) {
      .core-gallery {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* Horizontal ruled list — like a school prospectus contents */

    .core-item {
      border-bottom: 1px solid var(--rule-lt);
      padding: 1.6rem 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      transition: background .2s;
      cursor: default;
      position: relative;
      overflow: hidden;
    }

    .core-item:hover {
      background: var(--navy-tint);
      margin: 0 -5%;
      padding: 1.6rem 5%;
    }

    .core-item__meta {
      display: flex;
      align-items: baseline;
      gap: 1.2rem;
    }

    .core-item__num {
      position: absolute;
      bottom: -.5rem;
      right: .6rem;
      font-family: var(--zs);
      font-size: clamp(4rem, 8vw, 6rem);
      font-weight: 700;
      color: var(--navy);
      opacity: .25;
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }



    #electives {
      scroll-margin-top: 60px;
    }

    .core-item__badge {
      font-family: var(--is);
      font-size: .56rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #fff;
      background: var(--navy);
      padding: .2rem .6rem;
      margin-bottom: .4rem;
      display: inline-block;
      text-align: center;
    }

    .core-item__title {
      font-family: var(--zs);
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.15;
    }

    html[lang="vi"] .core-item__title {
      font-size: clamp(1.05rem, 2vw, 1.45rem);
    }

    .core-item__body {
      padding-left: 0;
    }

    .core-item__body p {
      font-family: var(--lr);
      font-size: .96rem;
      color: var(--ink-mid);
      line-height: 1.82;
    }

    .core-item__electives {
      display: grid;
      grid-template-columns: 1fr;
      gap: .25rem 0;
      margin-top: .8rem;
      list-style: none;
      border-left: 2px solid var(--maroon);
      padding-left: .9rem;
    }

    .core-item__electives li {
      font-family: var(--is);
      font-size: .80rem;
      font-weight: 600;
      color: var(--ink);
      padding: .3rem 0;
      letter-spacing: .01em;
      transition: color .2s;
      display: flex;
      align-items: flex-start;
      gap: .45rem;
    }

    .core-item__electives .elec-name {
      white-space: nowrap;
      flex-shrink: 0;
    }

    .core-item__electives .elec-desc {
      font-weight: 400;
      color: var(--ink);
    }

    .core-item__electives li::before {
      display: none;
    }

    .core-item__electives li:hover {
      color: var(--navy);
    }


    @media (min-width: 700px) {
      .core-item {
        grid-template-columns: 220px 1fr;
        gap: 2.5rem;
        align-items: center;
      }

      .core-item__meta {
        border-right: 1px solid var(--rule-lt);
        height: 100%;
        align-items: flex-start;
        padding-right: 2.5rem;
      }

      .core-item__body {
        border-left: none;
      }
    }

    /* Premium: maroon box */
    .electives__premium-box {
      background: var(--maroon);
      padding: 2.2rem;
    }

    .premium-title {
      margin-bottom: 1rem;
      border-bottom: 1px solid rgba(255,255,255,.1);
      padding-bottom: .8rem;
    }

    .prem-intro {
      font-family: var(--lr);
      font-size: .9rem;
      color: rgba(255,255,255,.8);
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .price-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      flex-shrink: 0;
      gap: .1rem;
    }

    .price-note {
      font-family: var(--is);
      font-size: .65rem;
      color: rgba(255,255,255,.5);
      white-space: nowrap;
    }

    .premium-title .core-item__title {
      color: var(--cream);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: .25em;
      text-transform: uppercase;
      font-family: var(--is);
    }

    .premium-entries {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .premium-entry {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    /* Flip the second entry for zig-zag on desktop */
    .premium-entry:nth-child(even) {
      grid-template-columns: 1fr 1.2fr;
    }

    .premium-entry__img {
      width: 100%;
      aspect-ratio: 16/9;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.2);
      overflow: hidden;
      border-radius: 2px;
    }

    .premium-entry__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s cubic-bezier(0.33, 1, 0.68, 1);
    }

    .premium-entry:hover .premium-entry__img img {
      transform: scale(1.05);
    }
    
    .premium-entry__row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      margin-bottom: .5rem;
    }

    .premium-entry h3 {
      font-family: var(--is);
      font-size: .95rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: .03em;
    }

    .premium-entry .price {
      font-family: var(--zs);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--gold);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .premium-entry p {
      font-family: var(--lr);
      font-size: .9rem;
      color: rgba(255, 255, 255, .8);
      line-height: 1.7;
    }

    @media (max-width: 699px) {
      .core-item__electives {
        gap: .1rem 1.2rem;
      }

      .core-item__electives {
        border-left: none;
        padding-left: 0;
      }
      .core-item__electives li {
        flex-direction: column;
        gap: .15rem;
      }
      .core-item__electives .elec-desc::before {
        content: '• ';
      }
      .core-item__electives .elec-desc {
        padding-left: .8rem;
      }


      .electives__premium-box {
        padding: 1.6rem 1.4rem;
      }

      .premium-title {
        margin-bottom: 1.5rem;
      }

      .premium-entries {
        gap: 2.5rem;
      }

      .premium-entry {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .premium-entry:nth-child(even) {
        grid-template-columns: 1fr;
      }

      .premium-entry__img {
        order: -1; /* Always image first on mobile */
      }

      .premium-entry h3 {
        font-size: 1.05rem;
      }

      .premium-entry .price {
        font-size: 1.15rem;
      }
    }

    .electives__note {
      font-family: var(--is);
      font-size: .78rem;
      color: rgba(26,18,8,1);
      line-height: 1.6;
      margin-top: 1rem;
      text-align: center;
    }

    /* ============================================================
   SHOWCASE
   ============================================================ */
    .showcase {
      background: var(--navy);
      padding: clamp(2.5rem, 5vw, 4rem) 5%;
      position: relative;
      overflow: hidden;
    }

    .showcase::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    .showcase__inner {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .showcase__layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
    }

    .showcase__img {
      aspect-ratio: 16/10;
      overflow: hidden;
      background: rgba(255, 255, 255, .10);
    }

    .showcase__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s;
    }

    .showcase__img:hover img {
      transform: scale(1.03);
    }

    .showcase__body h2 {
      font-family: var(--zs);
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.08;
      margin-bottom: .8rem;
    }

    .showcase__body h2 em {
      font-weight: 700;
      font-style: italic;
      color: rgba(248, 241, 224, .65);
    }

    .showcase__body p {
      font-family: var(--lr);
      font-size: 1rem;
      color: rgba(255, 255, 255, .50);
      line-height: 1.85;
      margin-bottom: 1rem;
    }

    .showcase__pull-wht {
      font-family: var(--zs);
      font-size: clamp(1rem, 1.7vw, 1.25rem);
      font-style: italic;
      color: var(--cream-dark);
      border-top: 1px solid rgba(255, 255, 255, .15);
      border-bottom: 1px solid rgba(255, 255, 255, .10);
      padding: .8rem 0;
      margin: 1.2rem 0;
      line-height: 1.50;
    }

    .showcase__note {
      font-family: var(--is);
      font-size: .68rem;
      color: rgba(255, 255, 255, .30);
      font-style: italic;
      margin-bottom: 1.4rem;
    }

    @media (min-width: 780px) {
      .showcase__layout {
        grid-template-columns: 1fr 1fr;
      }

      .showcase__img {
        aspect-ratio: 4/5;
      }
    }

    /* ============================================================
   REGISTER — Cream, form on right, statement left
   ============================================================ */
    .register {
      background: var(--paper-warm);
      padding: clamp(3rem, 5vw, 4rem) 5% clamp(4rem, 7vw, 6rem);
      border-top: 3px double var(--navy);
    }

    .register__eyebrow {
      display: block;
      max-width: 800px;
      margin: 0 auto 2rem;
    }

    .register__inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      max-width: 800px;
      margin: 0 auto;
    }



    .register__left>p {
      font-family: var(--lr);
      font-size: 1rem;
      color: var(--ink-mid);
      line-height: 1.85;
      margin-bottom: 1rem;
      max-width: 420px;
    }

    .pricing-box {
      border-right: 1px solid var(--rule);
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .pricing-box__cap {
      background: linear-gradient(to right, transparent var(--eb-col-w), var(--maroon) var(--eb-col-w));
      padding: .7rem 1.2rem .7rem 0;
      font-family: var(--is);
      font-size: clamp(.75rem, 2vw, .95rem);
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(248, 241, 224, .85);
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: .6rem;
    }

    .pricing-cap__spacer {
      display: inline-block;
      width: var(--eb-col-w);
      flex-shrink: 0;
    }

    .pricing-table-wrap {
      width: 100%;
      overflow-x: auto;
      background: transparent;
    }

    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      font-family: var(--is);
      font-size: clamp(0.65rem, 2.5vw, 0.82rem);
      min-width: 0;
    }

    .pricing-table th {
      padding: clamp(0.4rem, 2vw, 0.85rem) 0.2rem;
      background: #8A2541; /* Deep Brand Maroon */
      color: #fff;
      font-size: clamp(0.75rem, 2.2vw, 0.95rem);
      font-weight: 700;
      letter-spacing: .04em;
      font-variant: small-caps;
      text-transform: none;
      border: none;
      text-align: center;
      line-height: 1.2;
    }

    .pricing-table td {
      padding: clamp(0.4rem, 2vw, 0.85rem) 0.3rem;
      border: 1px solid var(--rule);
      color: var(--ink-mid);
      vertical-align: middle;
      line-height: 1.25;
      font-size: clamp(0.82rem, 2.5vw, 1rem);
    }

    .pricing-table .col-date { font-weight: 400; color: var(--ink); text-align: center; }
    .pricing-table .col-disc { font-weight: 400; color: var(--ink); text-align: center; }
    .pricing-table .col-val  { font-weight: 600; font-family: var(--is); text-align: center; }

    .pricing-table th.col-eb-spacer-head {
      width: var(--eb-col-w);
      background: transparent;
      border: none;
      padding: 0;
    }

    @keyframes ebColorSwap {
      0%   { background: var(--navy);   color: var(--cream); }
      35%  { background: var(--maroon); color: #FFDE00; }
      65%  { background: var(--maroon); color: #FFDE00; }
      100% { background: var(--navy);   color: var(--cream); }
    }

    .col-eb-label {
      width: var(--eb-col-w);
      padding: .8rem .3rem;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      text-align: center;
      vertical-align: middle;
      font-family: var(--is);
      font-size: clamp(.48rem, 1.2vw, .62rem);
      font-weight: 700;
      letter-spacing: .14em;
      font-variant: normal;
      text-transform: uppercase;
      border-top: none;
      border-bottom: none;
      border-left: 3px solid var(--navy);
      border-right: 1px solid var(--rule);
      white-space: nowrap;
      animation: ebColorSwap 3s ease-in-out infinite;
    }

    .pricing-table td.col-eb-spacer {
      width: var(--eb-col-w);
      background: transparent;
      border: none;
      padding: 0;
    }

    .pricing-table tr.tr-eb {
      background: #E8F5E9; /* Light Green highlight */
    }

    .pricing-table tr.tr-post td {
      border-top: 2px solid rgba(105,28,50,.18);
      color: var(--ink);
    }

    .pricing-table tr.tr-post td:not(.col-eb-spacer) {
      background: var(--cream);
    }

    /* Expired early-bird row — dim data cells only, not the rowspan label */
    .pricing-table tr.tr-eb--expired .col-date span[data-lang],
    .pricing-table tr.tr-eb--expired .col-disc,
    .pricing-table tr.tr-eb--expired .col-val {
      opacity: .45;
      text-decoration: line-through;
      text-decoration-color: rgba(105,28,50,.55);
    }

    .p-eb-badge {
      font-size: .52rem;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      background: var(--maroon);
      color: var(--cream);
      padding: .15rem .40rem;
      border-radius: 2px;
      margin-bottom: .20rem;
      display: inline-block;
    }


    /* Form */
    .register__form {
      background: #fff;
      border: 1px solid var(--rule);
      border-top: 3px solid var(--navy);
      padding: clamp(1.2rem, 2vw, 1.8rem) clamp(1.8rem, 3vw, 2.8rem) clamp(1.8rem, 3vw, 2.8rem);
    }

    .register__form h3 {
      font-family: var(--zs);
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      font-weight: 600;
      color: var(--navy);
      margin-bottom: .4rem;
    }

    .register__form .form-sub {
      font-family: var(--lr);
      font-size: .94rem;
      color: var(--ink-mid);
      margin-bottom: 1.5rem;
      line-height: 1.72;
    }

    .field {
      margin-bottom: 1.2rem;
    }

    .field label {
      display: block;
      font-family: var(--is);
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-lt);
      margin-bottom: .45rem;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      background: var(--paper);
      border: 1px solid rgba(105, 28, 50, .15);
      color: var(--ink);
      font-family: var(--lr);
      font-size: .94rem;
      padding: .85rem 1rem;
      outline: none;
      transition: border-color .25s, box-shadow .25s;
      appearance: none;
      -webkit-appearance: none;
      border-radius: 0;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: var(--ink-lt);
      opacity: .6;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--navy);
      box-shadow: 0 0 0 3px rgba(105, 28, 50, .07);
    }

    .field select {
      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 d='M1 1l5 5 5-5' stroke='%23691C32' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      cursor: pointer;
    }

    .field select option {
      background: #fff;
      color: var(--ink);
    }

    .field__phone-row {
      display: flex;
      gap: .5rem;
    }

    .field__phone-row input[type="tel"] {
      flex: 1;
      min-width: 0;
    }

    /* Custom country code dropdown */
    .phone-code-select {
      position: relative;
      flex-shrink: 0;
    }

    .phone-code-select__btn {
      display: flex;
      align-items: center;
      gap: .5rem;
      padding: .85rem 1rem;
      background: var(--paper);
      border: 1px solid rgba(105,28,50,.15);
      color: var(--ink);
      font-family: var(--lr);
      font-size: .94rem;
      cursor: pointer;
      white-space: nowrap;
      outline: none;
      border-radius: 0;
      transition: border-color .25s, box-shadow .25s;
    }

    .phone-code-select__btn:focus,
    .phone-code-select.open .phone-code-select__btn {
      border-color: var(--navy);
      box-shadow: 0 0 0 3px rgba(105,28,50,.07);
    }

    .phone-code-select__chev {
      color: var(--maroon);
      transition: transform .2s;
      flex-shrink: 0;
    }

    .phone-code-select.open .phone-code-select__chev {
      transform: rotate(180deg);
    }

    .phone-code-select__list {
      display: none;
      position: absolute;
      top: calc(100% + 2px);
      left: 0;
      min-width: 220px;
      max-height: 260px;
      overflow-y: auto;
      background: #fff;
      border: 1px solid rgba(105,28,50,.2);
      box-shadow: 0 8px 24px rgba(0,0,0,.12);
      z-index: 200;
      list-style: none;
      margin: 0;
      padding: .3rem 0;
    }

    .phone-code-select.open .phone-code-select__list {
      display: block;
    }

    .phone-code-select__opt {
      padding: .55rem 1rem;
      font-family: var(--lr);
      font-size: .9rem;
      color: var(--ink);
      cursor: pointer;
      outline: none;
    }

    .phone-code-select__opt:hover,
    .phone-code-select__opt:focus {
      background: rgba(105,28,50,.07);
    }

    .phone-code-select__opt--active {
      background: rgba(105,28,50,.1);
      font-weight: 600;
    }

    .phone-code-select__sep {
      height: 1px;
      background: rgba(105,28,50,.12);
      margin: .3rem 0;
      pointer-events: none;
    }

    .field textarea {
      resize: vertical;
      min-height: 110px;
      line-height: 1.65;
    }

    .form-submit {
      width: 100%;
      background: var(--maroon);
      color: var(--cream);
      font-family: var(--is);
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      padding: 1rem 2rem;
      border: none;
      cursor: pointer;
      transition: background .25s, transform .25s;
      margin-top: .4rem;
    }

    .form-submit:hover {
      background: #001533;
      transform: translateY(-1px);
    }

    .form-success {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 3rem 1.5rem;
      gap: 1rem;
    }
    .form-success svg {
      width: 52px;
      height: 52px;
      color: var(--maroon);
      stroke: var(--maroon);
    }
    .form-success h4 {
      font-family: var(--zs);
      font-size: clamp(1.2rem, 3vw, 1.6rem);
      font-weight: 700;
      color: var(--maroon);
    }
    .form-success p {
      font-family: var(--lr);
      font-style: italic;
      font-size: clamp(.85rem, 2vw, 1rem);
      color: var(--ink-mid);
      max-width: 340px;
      line-height: 1.65;
    }



    /* ============================================================
   ABOUT
   ============================================================ */
    .about {
      background: var(--maroon);
      padding: clamp(4rem, 7vw, 6rem) 5%;
      position: relative;
      overflow: hidden;
    }

    .about::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(255, 255, 255, .015) 31px, rgba(255, 255, 255, .015) 32px);
      pointer-events: none;
      z-index: 1;
    }

    .about::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../images/historic-campus-mobile.jpg');
      background-size: cover;
      background-position: center 60%;
      opacity: 0.1;
      pointer-events: none;
    }

    @media (min-width: 700px) {
      .about::after {
        background-image: url('../images/historic-campus.jpg');
      }
    }

    .about__inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      max-width: 960px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      align-items: center;
    }

    .about__content {
      text-align: left;
    }

    .about__content .eyebrow {
      margin-bottom: 1.2rem;
    }

    .about__content h2 {
      font-family: var(--zs);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.08;
      margin-bottom: 1.2rem;
    }

    .about__content h2 em {
      font-weight: 700;
      font-style: italic;
      color: var(--cream);
    }

    .about__visual {
      text-align: center;
    }

    .about__logo {
      max-width: 375px;
      margin: 0 0 1.5rem;
    }

    .about__body p {
      font-family: var(--lr);
      font-size: 1rem;
      color: rgba(255, 255, 255, 1);
      line-height: 1.85;
      margin-bottom: 1rem;
    }



    @media (min-width: 700px) {
      .about__inner {
        grid-template-columns: 2.2fr 1fr;
        gap: 5rem;
      }

      .about__content {
        text-align: left;
      }

      .about__visual {
        text-align: right;
      }

      .about__logo {
        margin-right: 0;
      }
    }

    @media (max-width: 699px) {
      .about__content h2 {
        text-align: center;
      }

      .about__logo {
        display: block;
        margin: 0 auto 1.5rem;
      }
    }

    /* ============================================================
   FOOTER
   ============================================================ */
    footer {
      background: var(--navy-deep);
      color: rgba(255, 255, 255, 1);
      border-top: 4px solid var(--navy);
    }

    .footer__main {
      padding: clamp(1.2rem, 2.5vw, 2rem) 5% 2rem;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer__brand {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer__brand img {
      height: 40px;
      width: auto;
      align-self: center;
    }

    .footer__brand p {
      font-family: var(--lr);
      font-size: .84rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, .75);
    }

    @media (max-width: 699px) {
      .footer__brand-text {
        text-align: center;
      }
    }

    @media (max-width: 699px) {
      .pillar::before { opacity: 1; }
      .pillar { border-color: transparent; box-shadow: 0 10px 36px rgba(0,20,40,0.4), inset 0 1px 0 rgba(184,204,219,0.28); }
      .pillar h3 { color: #E8F0F5; }
      .pillar p { color: #b8ceda; }
      .pillar__num { color: #E8F0F5; opacity: 0.5; }
    }

    .footer__cols-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 1.5rem;
    }

    .footer__social {
      display: flex;
      flex-direction: column;
      gap: .8rem;
      align-items: center;
    }

    @media (max-width: 699px) {
      .footer__social {
        display: grid;
        grid-template-columns: max-content max-content;
        gap: 1.4rem 1.8rem;
        justify-content: center;
      }
    }

    .footer__social a {
      display: flex;
      align-items: center;
      gap: .55rem;
      transition: opacity .2s ease, transform .2s ease;
      position: relative;
    }

    .footer__social a.social-disabled {
      cursor: not-allowed;
    }

    @media (max-width: 699px) {
      .footer__social a.social-disabled::after {
        display: none;
      }
    }

    .footer__social a.social-disabled svg,
    .footer__social a.social-disabled span {
      opacity: 0.33;
    }

    .footer__social a.social-disabled::after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      background: var(--navy-deep, #001840);
      border: 1px solid rgba(113, 186, 193, 0.2);
      color: #71BAC1;
      font-size: 0.65rem;
      font-family: var(--is);
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 0.35rem 0.6rem;
      border-radius: 4px;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: opacity .2s ease, transform .2s ease, visibility .2s;
      pointer-events: none;
    }

    .footer__social a.social-disabled:hover::after {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .footer__social a:not(.social-disabled):hover {
      transform: scale(1.12);
    }

    .footer__social a:not(.social-disabled):hover svg {
      fill: #71BAC1;
    }

    .footer__social svg {
      width: 21px;
      height: 21px;
      fill: rgba(255, 255, 255, 1);
      transition: fill .2s ease;
    }

    .footer__col-head {
      font-family: var(--is);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .30em;
      text-transform: uppercase;
      color: var(--cream);
      opacity: 1;
      margin-bottom: .9rem;
      display: block;
      text-align: center;
    }

    .footer__col ul {
      list-style: none;
      text-align: center;
    }

    .footer__col ul li {
      margin-bottom: .45rem;
    }

    .footer__col ul a {
      font-family: var(--is);
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .04em;
      color: rgba(255, 255, 255, .75);
      transition: color .25s;
    }

    .footer__col ul a:hover {
      color: #71BAC1;
    }

    .footer__col ul li.plain {
      font-family: var(--lr);
      font-size: .84rem;
      color: rgba(255, 255, 255, .75);
    }

    .footer__col ul li.day {
      color: rgba(255, 255, 255, .75);
      margin-top: .55rem;
      font-family: var(--is);
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .04em;
    }

    .footer__col ul li.day:first-child {
      margin-top: 0;
    }

    .footer__tagline {
      font-family: var(--lr);
      font-size: .84rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, .75);
      text-align: center;
      padding: 0 5% .8rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer__logo-bottom {
      text-align: center;
      padding: .8rem 5% 1.2rem;
    }

    .footer__logo-bottom img {
      height: 40px;
      width: auto;
      display: block;
      margin: 0 auto;
    }

    .footer__bottom {
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding: 1.2rem 5%;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: .8rem;
    }

    .footer__copy {
      font-family: var(--is);
      font-size: .58rem;
      letter-spacing: .08em;
      color: rgba(255, 255, 255, 1);
    }

    .footer__tc {
      font-family: var(--is);
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .08em;
      color: rgba(255, 255, 255, 1);
      transition: color .25s;
      text-shadow: none;
      box-shadow: none;
    }

    .footer__tc:hover {
      color: #71BAC1;
      text-shadow: none;
      box-shadow: none;
    }

    .footer__credit {
      font-family: var(--is);
      font-size: .58rem;
      letter-spacing: .08em;
      color: rgba(255, 255, 255, .75);
      text-align: right;
      text-shadow: none;
      box-shadow: none;
      transition: color .25s;
    }
    .footer__credit:hover {
      color: #71BAC1;
      text-shadow: none;
      box-shadow: none;
    }

    @media (max-width: 699px) {
      .footer__bottom {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .footer__credit {
        text-align: center;
      }
    }

    @media (min-width: 700px) {
      .footer__brand {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
      }

      .footer__brand img {
        flex-shrink: 0;
      }

      .footer__brand p {
        max-width: none;
      }

      .footer__cols-wrap {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* ══════════════════════════════════════════════════════
       COLOR-SWAP PALETTE OVERRIDES
       Maroon primary + Teal accent corrections
       ══════════════════════════════════════════════════════ */

    /* Nav CTA — ghost style on maroon nav bar */
    .nav__cta {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(248, 241, 224, .40);
    }
    .nav__cta:hover {
      background: rgba(248, 241, 224, .12);
      color: var(--cream);
    }

    /* CTAs on dark (maroon) sections — use teal so they pop */
    .hero .btn-maroon,
    .showcase .btn-maroon,
    .qfaq .btn-maroon {
      background: #71BAC1;
      color: #1A1208;
      box-shadow: none;
    }
    .hero .btn-maroon:hover,
    .showcase .btn-maroon:hover,
    .qfaq .btn-maroon:hover {
      background: #5aabb2;
      color: #1A1208;
      transform: translateY(-6px);
      box-shadow: 0 12px 20px rgba(113, 186, 193, .35);
    }

    /* Register section — force true maroon (var swap: --navy = #691C32) */
    .register .btn-maroon {
      background: var(--navy) !important;
      color: var(--cream) !important;
    }
    .register .btn-maroon:hover {
      background: #8A2541 !important;
      color: var(--cream) !important;
      transform: translateY(-6px);
      box-shadow: 0 12px 16px rgba(105,28,50,.3) !important;
    }

    /* Start Your Enrollment — navy + cream */
    .hero__cta-bottom .btn-maroon {
      background: #002858 !important;
      color: var(--cream) !important;
    }
    .hero__cta-bottom .btn-maroon:hover {
      background: #00336e !important;
      color: var(--cream) !important;
      box-shadow: 0 12px 20px rgba(0, 40, 88, .35) !important;
    }

    /* FAQ section — cream background */
    .qfaq {
      background: var(--cream);
      border-top: 3px double var(--navy);
    }
    .qfaq::before {
      background-image: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 48px,
        rgba(26,18,8,.015) 48px,
        rgba(26,18,8,.015) 49px
      );
    }
    .qfaq__eyebrow {
      color: var(--navy);
    }
    .qfaq__head h2,
    .qfaq__head h2 em {
      color: var(--ink);
    }
    .qfaq__head p {
      color: var(--ink);
    }
    .qfaq__list {
      border-top-color: rgba(26,18,8,.12);
    }
    .qa-item {
      border-bottom-color: rgba(26,18,8,.08);
    }
    .qa-item__trigger h3 {
      color: var(--ink);
    }
    .qa-item__trigger:hover h3 {
      color: var(--navy);
    }
    .qa-item__icon {
      border-color: rgba(26,18,8,.18);
    }
    .qa-item__icon svg {
      stroke: rgba(26,18,8,.50);
    }
    .qa-item__trigger:hover .qa-item__icon svg {
      stroke: var(--cream);
    }
    .qa-item__body p {
      color: var(--ink);
    }
    .qa-item.open .qa-item__body-inner {
      background: rgba(113,186,193,.50);
    }

    /* Get Full Details — maroon + cream */
    .qfaq__cta-btn {
      background: #691C32 !important;
      color: var(--cream) !important;
    }
    .qfaq__cta-btn:hover {
      background: #7d2139 !important;
      color: var(--cream) !important;
      box-shadow: 0 12px 20px rgba(105, 28, 50, .35) !important;
    }

    /* Find Your Mentor — navy + cream */
    .mentor__cta {
      background: #002858 !important;
      color: var(--cream) !important;
    }
    .mentor__cta:hover {
      background: #00336e !important;
      color: var(--cream) !important;
      box-shadow: 0 12px 20px rgba(0,40,88,.35) !important;
    }

    /* Inquire About Electives — cream text on hover */
    .electives__cta:hover {
      color: var(--cream) !important;
    }

    /* Get on the Schedule — maroon + cream */
    .schedule__cta {
      background: #691C32 !important;
      color: var(--cream) !important;
    }
    .schedule__cta:hover {
      background: #7d2139 !important;
      color: var(--cream) !important;
      box-shadow: 0 12px 20px rgba(105, 28, 50, .35) !important;
    }

    /* Join the Finale — navy + cream */
    .showcase__cta {
      background: #002858 !important;
      color: var(--cream) !important;
      margin-top: 1rem;
    }
    .showcase__cta:hover {
      background: #00336e !important;
      color: var(--cream) !important;
      box-shadow: 0 12px 20px rgba(0, 40, 88, .35) !important;
    }

    /* Get the Program — maroon + cream */
    .program__cta-primary {
      background: #691C32 !important;
      color: var(--cream) !important;
      margin-top: 1rem;
    }
    .program__cta-primary:hover {
      background: #7d2139 !important;
      color: var(--cream) !important;
      box-shadow: 0 12px 20px rgba(105, 28, 50, .35) !important;
    }

    /* ── Custom hero logo lockup ── */
    .hero-lockup-band {
      margin-bottom: 1.2rem;
    }

    .hero-lockup {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: 1fr 3fr;
      aspect-ratio: 3 / 1;
      max-height: 260px;
      box-sizing: border-box;
      column-gap: min(2vw, 1.8rem);
      padding: min(1vw, .8rem);
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
    }

    .hero-lockup__crest {
      grid-column: 1;
      grid-row: 1 / 3;
      display: flex;
      align-items: stretch;
    }

    .hero-lockup__crest img {
      height: 100%;
      width: auto;
      display: block;
      filter: drop-shadow(2px 4px 5px rgba(0,0,0,.75));
    }

    .hero-lockup__school {
      grid-column: 2;
      grid-row: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-lockup__camp {
      grid-column: 2;
      grid-row: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-lockup__school {
      font-family: var(--lr);
      font-size: min(5vw, 3rem);
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--navy);
      text-align: center;
      align-self: end;
      padding-bottom: .3em;
      text-shadow: 2px 2px 4px rgba(0,0,0,.60);
    }

    .hero-lockup__camp {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      align-self: start;
    }

    .hero-lockup__camp span {
      font-family: var(--lr);
      font-size: min(9vw, 5.5rem);
      font-weight: 700;
      line-height: .95;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--maroon);
      display: block;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0,0,0,.60);
    }

    /* Reset h1 inherited styles inside lockup */
    .hero__title {
      font-size: inherit;
      line-height: 1;
      letter-spacing: normal;
      margin-bottom: 0;
    }

    /* HERO ENHANCEMENT — rich maroon gradient + teal accent stripe */
    .hero {
      background: linear-gradient(160deg, #2d0a16 0%, #4e1526 40%, #691C32 75%, #7a2040 100%);
    }
    .hero__stripe {
      background: linear-gradient(105deg, transparent 0%, rgba(113, 186, 193, .12) 100%);
    }
    .hero__crest-bg {
      opacity: .10;
    }


    /* Schedule — mobile */
    .schedule__head {
      text-align: center;
    }
    .dorm-acc__body-inner {
      overflow-x: auto;
    }

    /* Showcase — stacked layout */
    .showcase__inner {
      max-width: 960px;
    }
    .showcase__h2 {
      font-family: var(--zs);
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.08;
      margin-bottom: 1.8rem;
    }
    .showcase__h2 em {
      font-weight: 700;
      font-style: italic;
      color: rgba(248, 241, 224, .75);
    }
    .showcase__img {
      aspect-ratio: 16 / 5;
      margin-bottom: 2.5rem;
      border: 1px solid rgba(248,241,224,.50);
    }
    @media (min-width: 780px) {
      .showcase__img { aspect-ratio: 16 / 5; }
    }
    .showcase__body {
      max-width: none;
    }
    .showcase__pull-wht {
      border: none;
      padding: 0;
      margin: 0;
      color: var(--cream);
    }
    .showcase__note {
      color: var(--cream);
      margin-bottom: .8rem;
    }
    .showcase__body p {
      color: var(--cream);
    }
    .showcase__rule {
      border: none;
      border-top: 1px solid rgba(248,241,224,.50);
      margin: 1.4rem 0;
    }

    /* Pillar card hover — ghost number stays teal, title goes full cream */
    .pillar__num { color: #71BAC1; opacity: .50; bottom: auto; top: -.5rem; }
    .pillar:hover .pillar__num { color: #71BAC1; opacity: .67; }
    .pillar:hover h3 { color: #F8F1E0; }
    .pillar:hover p  { color: #F8F1E0; }
    /* Core head intro — remove width cap */
    .core__head p { max-width: none; }

    /* FAQ — teal icon on hover/open, teal body background when open */
    .qa-item__trigger:hover .qa-item__icon,
    .qa-item.open .qa-item__icon { background: #71BAC1; border-color: #71BAC1; }
    .qa-item__trigger:hover .qa-item__icon svg,
    .qa-item.open .qa-item__icon svg { stroke: #1A1208; }
    .qa-item.open .qa-item__body-inner { background: rgba(113,186,193,.25); padding: .8rem; }
    .qa-item.open .qa-item__body p { color: rgba(26,18,8,1); }

    /* Mentorship — passport + pull-quote borders → maroon */
    .passport-sidebar {
      border-top-color: #71BAC1;
    }
    .pull-quote {
      border-top-color: var(--navy);
      border-bottom-color: var(--navy);
    }

    /* Nav — match footer deep maroon */
    #nav {
      background: var(--navy-deep);
    }

    /* Pricing Overview cap — 100% cream */
    .pricing-box__cap {
      color: var(--cream);
    }

    /* Enroll Now — teal background */
    .register {
      background: rgba(113, 186, 193, .67);
    }

    /* Mentorship — remove bottom padding */
    .mentorship {
      padding-bottom: 0;
    }

    /* Core Programs — teal background */
    .core {
      background: rgba(113, 186, 193, .67);
      border-top-color: rgba(0, 0, 0, .10);
    }

    /* ============================================================
       NEEDS REVIEW banners — TEMPORARY, delete this block when done
       To remove: delete this CSS block + remove class="needs-review"
       from any HTML elements
       ============================================================ */
    @keyframes nr-pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: .35; }
    }

    .needs-review {
      position: relative;
    }

    .needs-review::before {
      content: '⚠ NEEDS REVIEW';
      position: absolute;
      top: 0;
      left: 0;
      right: auto;
      bottom: auto;
      width: max-content;
      height: auto;
      background: #cc0000;
      color: #fff;
      font-family: monospace;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .12em;
      padding: .25rem .6rem;
      z-index: 200;
      pointer-events: none;
      opacity: 1 !important;
    }

    .needs-content::before {
      content: '⚠ NEED CONTENT' !important;
    }


    .needs-review--right::before {
      left: auto;
      right: 0;
    }

    .needs-review--left::before {
      left: auto;
      right: calc(100% + 10px);
    }

    .needs-review--center::before {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

