    /* ═══════════════════════════════════════════
       DESIGN TOKENS
       Teal #004241 · Orange #E8652A · cream bg
    ═══════════════════════════════════════════ */
    :root {
      /* Brand teal — one tone lighter than #004241 */
      --teal:        #005f5c;
      --teal-dk:     #004241;
      --teal-md:     #007a77;
      --teal-lt:     #009e9a;
      --teal-bg:     rgba(0,95,92,.07);
      --teal-bg2:    rgba(0,95,92,.13);

      /* Brand orange */
      --orange:      #E8652A;
      --orange-dk:   #c44e18;
      --orange-lt:   #f5874f;
      --orange-bg:   rgba(232,101,42,.09);

      /* Neutrals */
      --ink:         #1A2229;
      --text:        #354047;
      --muted:       #6B7A84;
      --cream:       #FAF8F5;
      --warm:        #F0EBE3;
      --border:      rgba(0,0,0,.08);
      --white:       #FFFFFF;

      /* Shape */
      --r-sm: 8px;
      --r:    14px;
      --r-lg: 22px;

      /* Shadow */
      --sh-sm: 0 2px 12px rgba(0,95,92,.07);
      --sh:    0 6px 32px rgba(0,95,92,.12);
      --sh-lg: 0 16px 56px rgba(0,95,92,.16);

      /* Motion */
      --ease: cubic-bezier(.25,.46,.45,.94);
      --t:    .28s var(--ease);
    }

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
    body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text); line-height: 1.65; overflow-x: hidden; }
    img  { max-width: 100%; display: block; }
    a    { text-decoration: none; color: inherit; }
    ul   { list-style: none; }
    button { font-family: inherit; }

    /* ── TYPOGRAPHY ── */
    h1, h2, h3 { font-family: 'Lora', serif; line-height: 1.2; color: var(--ink); }
    h1 { font-size: clamp(2rem, 6.5vw, 3.8rem); font-weight: 700; }
    h2 { font-size: clamp(1.65rem, 4.5vw, 2.8rem); font-weight: 700; }
    h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); font-weight: 600; }
    p  { font-size: .97rem; line-height: 1.75; }

    /* ── LAYOUT ── */
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
    @media (min-width: 640px)  { .container { padding: 0 1.75rem; } }
    @media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

    section { padding: 4rem 0; }
    @media (min-width: 768px)  { section { padding: 6rem 0; } }
    @media (min-width: 1024px) { section { padding: 7.5rem 0; } }

    /* ── SECTION HEADER ── */
    .sec-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
    .sec-head h2 { margin-bottom: .75rem; }
    .sec-head p  { color: var(--muted); }

    /* ── BADGES ── */
    .badge {
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: .73rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
      padding: .3rem .9rem; border-radius: 100px; margin-bottom: 1rem;
    }
    .badge--teal   { background: var(--teal-bg2); color: var(--teal-md); }
    .badge--orange { background: var(--orange-bg); color: var(--orange); }
    .badge--ink    { background: rgba(26,34,41,.06); color: var(--ink); }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .9rem; font-weight: 600;
      padding: .8rem 1.65rem; border-radius: 100px;
      border: 2px solid transparent; cursor: pointer;
      transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
      white-space: nowrap;
    }
    .btn svg { flex-shrink: 0; }

    .btn-primary {
      background: var(--orange); color: var(--white);
      box-shadow: 0 4px 18px rgba(232,101,42,.32);
    }
    .btn-primary:hover  { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(232,101,42,.4); }
    .btn-primary:active { transform: translateY(0); }

    .btn-teal {
      background: var(--teal); color: var(--white);
      box-shadow: 0 4px 18px rgba(0,66,65,.28);
    }
    .btn-teal:hover  { background: var(--teal-dk); transform: translateY(-2px); }

    .btn-outline {
      background: transparent; color: var(--teal);
      border-color: rgba(0,66,65,.25);
    }
    .btn-outline:hover { border-color: var(--teal); background: var(--teal-bg); }

    .btn-outline-white {
      background: transparent; color: var(--white);
      border-color: rgba(255,255,255,.38);
    }
    .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }


    /* ═══════════════════════════════════════════
       HEADER  —  two rows
       Row 1 (logo bar): white bg, logo + social + hamburger
       Row 2 (nav bar):  light teal bg, nav links + CTA (desktop only)
    ═══════════════════════════════════════════ */
    #header {
      position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 200;
      transition: box-shadow var(--t);
    }
    #header.scrolled { box-shadow: 0 2px 24px rgba(0,95,92,.18); }

    /* Row 1 – logo */
    .header-top {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: .7rem 0;
    }
    .header-top-inner {
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    }
    .nav-logo img { height: 42px; width: auto; display: block; filter: brightness(0); }
    @media (min-width: 768px) { .nav-logo img { height: 48px; } }

    .header-top-right {
      display: flex; align-items: center; gap: .6rem;
    }
    /* social icons in top bar – show desktop only */
    .header-social { display: none; align-items: center; gap: .3rem; }
    @media (min-width: 768px) { .header-social { display: flex; } }
    .header-social a {
      width: 32px; height: 32px; border-radius: var(--r-sm);
      color: var(--muted); display: flex; align-items: center; justify-content: center;
      transition: color var(--t), background var(--t);
    }
    .header-social a:hover { color: var(--teal); background: var(--teal-bg); }

    /* hamburger – mobile only */
    .hamburger {
      display: flex; align-items: center; justify-content: center;
      width: 40px; height: 40px; border-radius: var(--r-sm);
      background: var(--warm); border: 1px solid var(--border);
      cursor: pointer; color: var(--teal); flex-shrink: 0;
      transition: background var(--t);
    }
    .hamburger:hover { background: var(--teal-bg2); }
    @media (min-width: 1024px) { .hamburger { display: none; } }

    /* Row 2 – nav */
    .header-nav {
      background: var(--teal);
      padding: 0;
    }
    .header-nav-inner {
      display: flex; align-items: stretch; justify-content: space-between; gap: 0;
    }

    /* Nav links */
    .nav-links {
      display: flex; align-items: stretch; gap: 0; flex-wrap: nowrap;
      overflow-x: auto; -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .nav-links::-webkit-scrollbar { display: none; }

    .nav-links a {
      display: flex; align-items: center;
      font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.78);
      padding: .75rem .95rem; white-space: nowrap;
      border-bottom: 2px solid transparent;
      transition: color var(--t), background var(--t), border-color var(--t);
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--white); background: rgba(255,255,255,.08);
      border-bottom-color: var(--orange);
    }

    /* Nav CTA */
    .nav-cta {
      display: none; align-items: center;
      padding: .4rem 0; flex-shrink: 0;
    }
    @media (min-width: 1024px) { .nav-cta { display: flex; gap: .5rem; } }
    .nav-cta .btn { padding: .5rem 1.2rem; font-size: .82rem; border-radius: 100px; }
    .nav-cta .btn-orange-nav {
      background: var(--orange); color: var(--white); border: 2px solid transparent;
      transition: background var(--t), transform var(--t);
    }
    .nav-cta .btn-orange-nav:hover { background: var(--orange-dk); transform: none; }
    .nav-cta .btn-ghost-nav {
      background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.3);
    }
    .nav-cta .btn-ghost-nav:hover { background: rgba(255,255,255,.1); color: var(--white); }

    /* offset body so content clears the two-row header */
    .header-spacer { height: 96px; }
    @media (min-width: 768px) { .header-spacer { height: 104px; } }


    /* ═══════════════════════════════════════════
       MOBILE DRAWER
    ═══════════════════════════════════════════ */
    .overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,34,33,.5); z-index: 300;
      backdrop-filter: blur(4px);
    }
    .overlay.open { display: block; }

    .drawer {
      position: fixed; inset-block: 0; inset-inline-end: 0;
      width: min(320px, 88vw); background: var(--white);
      z-index: 301; padding: 0;
      transform: translateX(100%); transition: transform .35s var(--ease);
      overflow-y: auto; -webkit-overflow-scrolling: touch;
      box-shadow: -6px 0 40px rgba(0,66,65,.18);
      display: flex; flex-direction: column;
    }
    .drawer.open { transform: translateX(0); }

    .drawer-head {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
      background: var(--white); flex-shrink: 0;
    }
    .drawer-head img { height: 36px; filter: brightness(0); }
    .drawer-close {
      width: 36px; height: 36px; border-radius: var(--r-sm);
      background: var(--warm); border: 1px solid var(--border);
      cursor: pointer; color: var(--teal);
      display: flex; align-items: center; justify-content: center;
      transition: background var(--t);
    }
    .drawer-close:hover { background: var(--teal-bg2); }

    .drawer-nav { flex: 1; padding: .5rem 0; }
    .drawer-nav a {
      display: flex; align-items: center; gap: .75rem;
      font-size: .95rem; font-weight: 500; color: var(--ink);
      padding: .9rem 1.25rem;
      border-bottom: 1px solid var(--border);
      transition: background var(--t), color var(--t);
    }
    .drawer-nav a:last-child { border-bottom: none; }
    .drawer-nav a:hover { background: var(--teal-bg); color: var(--teal); }
    .drawer-nav a svg { color: var(--teal); opacity: .7; flex-shrink: 0; }

    .drawer-footer {
      padding: 1.25rem; border-top: 1px solid var(--border);
      display: flex; flex-direction: column; gap: .65rem; flex-shrink: 0;
    }
    .drawer-footer .btn { justify-content: center; }

    .drawer-social {
      display: flex; align-items: center; justify-content: center; gap: .75rem;
      padding-top: .75rem;
    }
    .drawer-social a {
      width: 34px; height: 34px; border-radius: var(--r-sm);
      background: var(--warm); color: var(--teal);
      display: flex; align-items: center; justify-content: center;
      transition: background var(--t);
    }
    .drawer-social a:hover { background: var(--teal-bg2); }


    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    .hero {
      background: var(--teal-dk);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
    }

    .hero-bg { position: absolute; inset: 0; pointer-events: none; }
    .hero-bg::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232,101,42,.15) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 10% 85%, rgba(0,120,115,.35) 0%, transparent 50%);
    }

    .hero-inner {
      position: relative; z-index: 2;
      padding: 4rem 0 4.5rem;
      display: grid; gap: 2.5rem; align-items: center;
    }
    @media (min-width: 768px)  { .hero-inner { padding: 5rem 0 5.5rem; } }
    @media (min-width: 1024px) { .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 5.5rem 0 6rem; } }

    .hero-eyebrow { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.3rem; }
    .hero-eyebrow-line { width: 32px; height: 2px; background: var(--orange); }
    .hero-eyebrow-text { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }

    .hero h1 { color: var(--white); margin-bottom: 1.2rem; }
    .hero h1 em { color: var(--orange-lt); font-style: italic; }
    .hero-desc { font-size: 1.03rem; color: rgba(255,255,255,.7); margin-bottom: 1.9rem; max-width: 480px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

    /* card */
    .hero-card {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(14px); border-radius: var(--r-lg); padding: 1.75rem;
      position: relative;
    }
    @media (min-width: 1024px) { .hero-card { padding: 2.2rem; } }
    .hero-card-accent {
      position: absolute; top: 0; left: 2rem; right: 2rem; height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--orange-lt));
      border-radius: 0 0 4px 4px;
    }
    .hero-card-label { font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.2rem; }
    .hero-topics { display: flex; flex-direction: column; gap: .55rem; }
    .hero-topic {
      display: flex; align-items: center; gap: .85rem; padding: .75rem 1rem;
      border-radius: var(--r-sm); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
      transition: background var(--t);
    }
    .hero-topic:hover { background: rgba(255,255,255,.1); }
    .t-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .d1 { background: var(--orange-lt); } .d2 { background: #72c898; }
    .d3 { background: #72aed4; }          .d4 { background: #e8c048; }
    .d5 { background: #c49ae8; }
    .hero-topic-name { font-size: .88rem; color: rgba(255,255,255,.76); font-weight: 500; flex: 1; }
    .hero-topic-arr  { color: rgba(255,255,255,.28); flex-shrink: 0; }
    .hero-card-foot {
      margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.1);
      display: flex; align-items: center; gap: .75rem;
    }
    .hero-badge-new {
      display: inline-flex; align-items: center; gap: .4rem;
      background: var(--orange); color: var(--white);
      font-size: .75rem; font-weight: 700; padding: .3rem .8rem; border-radius: 100px;
    }
    .hero-card-foot-txt { font-size: .82rem; color: rgba(255,255,255,.5); }


    /* ═══════════════════════════════════════════
       MARQUEE
    ═══════════════════════════════════════════ */
    .marquee { background: var(--orange); overflow: hidden; padding: .75rem 0; }
    .marquee-track { display: flex; gap: 2.5rem; animation: scrollx 26s linear infinite; width: max-content; }
    .marquee:hover .marquee-track { animation-play-state: paused; }
    @keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .m-item { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--white); }
    .m-sep  { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); flex-shrink: 0; }


    /* ═══════════════════════════════════════════
       MISSION
    ═══════════════════════════════════════════ */
    .mission { background: var(--cream); }
    .mission-grid { display: grid; gap: 3rem; align-items: center; }
    @media (min-width: 1024px) { .mission-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

    .mission-text h2 { margin-bottom: 1rem; }
    .mission-text p  { color: var(--muted); margin-bottom: 1rem; }
    .mission-pills   { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.5rem 0 2rem; }
    .pill {
      font-size: .78rem; font-weight: 500; color: var(--text);
      padding: .38rem .95rem; border-radius: 100px;
      background: var(--warm); border: 1px solid var(--border);
      transition: background var(--t), color var(--t), border-color var(--t);
    }
    .pill:hover { background: var(--teal-bg2); color: var(--teal); border-color: rgba(0,66,65,.2); }

    .mission-img-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); position: relative; }
    .mission-img-wrap img { width: 100%; height: 300px; object-fit: cover; }
    @media (min-width: 768px) { .mission-img-wrap img { height: 380px; } }
    .mission-img-ov {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(0,34,33,.62) 100%);
    }
    .mission-img-caption {
      position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; color: var(--white);
    }
    .mission-img-caption strong { display: block; font-family: 'Lora', serif; font-size: 1.1rem; margin-bottom: .2rem; }
    .mission-img-caption span   { font-size: .8rem; color: rgba(255,255,255,.62); }


    /* ═══════════════════════════════════════════
       AREAS
    ═══════════════════════════════════════════ */
    .areas { background: var(--teal-dk); }
    .areas .sec-head h2 { color: var(--white); }
    .areas .sec-head p  { color: rgba(255,255,255,.52); }

    .areas-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
    @media (min-width: 560px)  { .areas-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }

    .area-card {
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
      border-radius: var(--r); padding: 1.5rem;
      transition: background var(--t), border-color var(--t), transform var(--t);
      position: relative; overflow: hidden;
    }
    .area-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--orange), var(--orange-lt));
      transform: scaleX(0); transform-origin: left; transition: transform var(--t);
    }
    .area-card:hover { background: rgba(255,255,255,.08); border-color: rgba(232,101,42,.22); transform: translateY(-3px); }
    .area-card:hover::after { transform: scaleX(1); }

    .area-icon { width: 44px; height: 44px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; flex-shrink: 0; }
    .ico { background: rgba(232,101,42,.15); color: var(--orange-lt); }
    .ico2 { background: rgba(114,200,152,.15); color: #72c898; }
    .ico3 { background: rgba(114,174,212,.15); color: #7ab8e0; }
    .ico4 { background: rgba(232,192,72,.12);  color: #e8c048; }
    .ico5 { background: rgba(98,212,184,.12);  color: #62d4b8; }
    .ico6 { background: rgba(196,154,232,.12); color: #c49ae8; }

    .area-card h3 { color: var(--white); font-size: 1.02rem; margin-bottom: .55rem; }
    .area-card p  { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; }
    .area-link {
      display: inline-flex; align-items: center; gap: .35rem;
      font-size: .81rem; font-weight: 600; color: var(--orange-lt); margin-top: 1rem;
      transition: gap var(--t);
    }
    .area-card:hover .area-link { gap: .6rem; }


    /* ═══════════════════════════════════════════
       WORKSHOPS
    ═══════════════════════════════════════════ */
    .workshops { background: var(--cream); }
    .workshops-grid { display: grid; gap: 1.2rem; }
    @media (min-width: 640px)  { .workshops-grid { grid-template-columns: 1fr 1fr; } }

    .ws-card {
      background: var(--white); border-radius: var(--r); overflow: hidden;
      box-shadow: var(--sh-sm); display: flex; flex-direction: column;
      transition: transform var(--t), box-shadow var(--t);
    }
    .ws-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }

    /* side-by-side on narrow mobile */
    @media (min-width: 420px) and (max-width: 639px) {
      .ws-card { flex-direction: row; }
      .ws-img  { width: 130px; flex-shrink: 0; }
    }

    .ws-img { overflow: hidden; background: var(--warm); }
    .ws-img img { width: 100%; height: 170px; object-fit: cover; transition: transform .5s ease; display: block; }
    @media (min-width: 420px) and (max-width: 639px) { .ws-img img { height: 100%; min-height: 130px; } }
    .ws-card:hover .ws-img img { transform: scale(1.05); }

    .ws-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
    .ws-type { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: .4rem; }
    .ws-body h3 { font-size: .98rem; color: var(--ink); margin-bottom: .45rem; line-height: 1.35; }
    .ws-body p  { font-size: .83rem; color: var(--muted); flex: 1; line-height: 1.65; }
    .ws-foot {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: .9rem; padding-top: .85rem; border-top: 1px solid var(--border);
    }
    .ws-speaker { display: flex; align-items: center; gap: .45rem; font-size: .78rem; color: var(--muted); }
    .ws-av { width: 26px; height: 26px; border-radius: 50%; background: var(--warm); display: flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0; }
    .ws-arr {
      width: 30px; height: 30px; border-radius: 50%; background: var(--warm);
      color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: background var(--t), color var(--t);
    }
    .ws-card:hover .ws-arr { background: var(--orange); color: var(--white); }

    .sec-cta { text-align: center; margin-top: 2.5rem; }


    /* ═══════════════════════════════════════════
       NEWS
    ═══════════════════════════════════════════ */
    .news { background: var(--warm); }
    .news-grid { display: grid; gap: 1.2rem; }
    @media (min-width: 640px)  { .news-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

    .nc {
      background: var(--white); border-radius: var(--r); overflow: hidden;
      box-shadow: var(--sh-sm); display: flex; flex-direction: column;
      transition: transform var(--t), box-shadow var(--t);
    }
    .nc:hover { transform: translateY(-4px); box-shadow: var(--sh); }
    .nc-img { height: 185px; overflow: hidden; background: var(--warm); }
    .nc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .nc:hover .nc-img img { transform: scale(1.05); }
    .nc-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
    .nc-meta { font-size: .71rem; color: var(--muted); margin-bottom: .45rem; display: flex; align-items: center; gap: .35rem; }
    .nc-body h3 { font-size: .97rem; margin-bottom: .55rem; line-height: 1.35; }
    .nc-body p  { font-size: .84rem; color: var(--muted); flex: 1; }
    .nc-read {
      display: inline-flex; align-items: center; gap: .35rem;
      font-size: .8rem; font-weight: 600; color: var(--orange); margin-top: .9rem;
      transition: gap var(--t);
    }
    .nc:hover .nc-read { gap: .6rem; }


    /* ═══════════════════════════════════════════
       CTA BANNER
    ═══════════════════════════════════════════ */
    .cta-band { background: var(--teal); padding: 4rem 0; position: relative; overflow: hidden; }
    .cta-band::before {
      content: ''; position: absolute; top: -120px; left: -120px;
      width: 420px; height: 420px; border-radius: 50%;
      background: radial-gradient(circle, rgba(232,101,42,.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-inner {
      position: relative; z-index: 1;
      display: flex; flex-direction: column; gap: 2rem; align-items: flex-start;
    }
    @media (min-width: 768px) { .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
    .cta-text h2 { color: var(--white); }
    .cta-text h2 em { color: var(--orange-lt); font-style: italic; }
    .cta-text p    { color: rgba(255,255,255,.6); margin-top: .7rem; }
    .cta-actions   { display: flex; flex-wrap: wrap; gap: .7rem; flex-shrink: 0; }


    /* ═══════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════ */
    .contact { background: var(--cream); }
    .contact-grid { display: grid; gap: 3rem; }
    @media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }

    .ci-info h2 { margin-bottom: .9rem; }
    .ci-info > p { color: var(--muted); margin-bottom: 1.8rem; }
    .ci-list { display: flex; flex-direction: column; gap: .95rem; }
    .ci-item { display: flex; align-items: flex-start; gap: .85rem; }
    .ci-icon {
      width: 40px; height: 40px; border-radius: var(--r-sm);
      background: var(--teal); color: var(--white);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .ci-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .15rem; }
    .ci-val   { font-size: .92rem; font-weight: 500; color: var(--ink); }
    .ci-val a { color: var(--orange); transition: color var(--t); }
    .ci-val a:hover { color: var(--orange-dk); }

    .ci-form {
      background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--sh);
    }
    @media (min-width: 640px) { .ci-form { padding: 2.2rem; } }
    .ci-form h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: 1.35rem; }
    .frow { display: grid; gap: 1rem; grid-template-columns: 1fr; }
    @media (min-width: 480px) { .frow { grid-template-columns: 1fr 1fr; } }
    .fg { margin-bottom: 1rem; }
    .fg label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
    .fg input, .fg textarea, .fg select {
      width: 100%; padding: .78rem 1rem;
      border: 1.5px solid var(--border); border-radius: var(--r-sm);
      font-family: 'Inter', sans-serif; font-size: .92rem; color: var(--text);
      background: var(--cream); outline: none; -webkit-appearance: none;
      transition: border-color var(--t), box-shadow var(--t);
    }
    .fg input:focus, .fg textarea:focus, .fg select:focus {
      border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,66,65,.12);
    }
    .fg textarea { resize: vertical; min-height: 108px; }
    .form-submit { width: 100%; justify-content: center; margin-top: .5rem; }


    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    footer { background: var(--teal-dk); color: rgba(255,255,255,.58); padding: 3.5rem 0 1.75rem; }

    .ft-main {
      display: grid; gap: 2.5rem; grid-template-columns: 1fr;
      padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1.75rem;
    }
    @media (min-width: 560px)  { .ft-main { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .ft-main { grid-template-columns: 2fr 1fr 1fr 1.3fr; } }

    .ft-brand img { height: 40px; margin-bottom: .9rem; }
    .ft-brand p   { font-size: .85rem; color: rgba(255,255,255,.4); max-width: 255px; margin-bottom: 1.15rem; }
    .ft-social { display: flex; gap: .55rem; }
    .ft-social a {
      width: 34px; height: 34px; border-radius: var(--r-sm);
      background: rgba(255,255,255,.07); color: rgba(255,255,255,.5);
      display: flex; align-items: center; justify-content: center;
      transition: background var(--t), color var(--t);
    }
    .ft-social a:hover { background: var(--orange); color: var(--white); }

    .ft-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 1rem; }
    .ft-col ul { display: flex; flex-direction: column; gap: .5rem; }
    .ft-col a  { font-size: .86rem; color: rgba(255,255,255,.48); transition: color var(--t); }
    .ft-col a:hover { color: var(--orange-lt); }

    .ft-nl p { font-size: .83rem; color: rgba(255,255,255,.4); margin-bottom: .85rem; }
    .ft-nl-row { display: flex; gap: .45rem; }
    .ft-nl-row input {
      flex: 1; min-width: 0; padding: .62rem .9rem; border-radius: var(--r-sm);
      border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07);
      color: var(--white); font-size: .84rem; font-family: inherit; outline: none;
      transition: border-color var(--t);
    }
    .ft-nl-row input:focus { border-color: var(--orange); }
    .ft-nl-row input::placeholder { color: rgba(255,255,255,.28); }
    .ft-nl-row button {
      padding: .62rem .95rem; background: var(--orange); color: var(--white);
      border: none; border-radius: var(--r-sm); cursor: pointer; font-weight: 700; font-size: .83rem;
      white-space: nowrap; transition: background var(--t);
    }
    .ft-nl-row button:hover { background: var(--orange-dk); }

    .ft-bottom {
      display: flex; flex-direction: column; gap: .65rem; font-size: .79rem;
    }
    @media (min-width: 640px) { .ft-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
    .ft-links { display: flex; flex-wrap: wrap; gap: 1.1rem; }
    .ft-links a, .ft-bottom span { color: rgba(255,255,255,.35); }
    .ft-links a:hover { color: var(--orange-lt); transition: color var(--t); }


    /* ═══════════════════════════════════════════
       SCROLL TO TOP
    ═══════════════════════════════════════════ */
    #scrolltop {
      position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 150;
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--teal); color: var(--white); border: none;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(0,95,92,.35); cursor: pointer;
      opacity: 0; pointer-events: none; transition: opacity var(--t), transform var(--t);
    }
    #scrolltop.show { opacity: 1; pointer-events: auto; }
    #scrolltop:hover { transform: translateY(-3px); }


    /* ═══════════════════════════════════════════
       CONTRAST TOGGLE BUTTON
    ═══════════════════════════════════════════ */
    .contrast-btn {
      display: flex; align-items: center; justify-content: center;
      width: 32px; height: 32px; border-radius: var(--r-sm);
      background: none; border: 1.5px solid var(--border);
      cursor: pointer; color: var(--muted); flex-shrink: 0;
      transition: color var(--t), background var(--t), border-color var(--t);
      position: relative;
    }
    .contrast-btn:hover {
      color: var(--teal); background: var(--teal-bg); border-color: rgba(0,95,92,.25);
    }
    /* active (contrast on) state */
    .contrast-btn[aria-pressed="true"] {
      background: var(--teal); border-color: var(--teal); color: var(--white);
    }
    /* Tooltip */
    .contrast-btn::after {
      content: attr(data-tooltip);
      position: absolute; top: calc(100% + 6px); right: 0;
      white-space: nowrap; font-size: .72rem; font-weight: 600;
      background: var(--ink); color: var(--white);
      padding: .3rem .7rem; border-radius: 6px;
      opacity: 0; pointer-events: none; transform: translateY(-4px);
      transition: opacity .2s, transform .2s;
    }
    .contrast-btn:hover::after { opacity: 1; transform: translateY(0); }


    /* ═══════════════════════════════════════════
       HIGH CONTRAST MODE  [data-contrast="high"]
       — WCAG AA on black background
    ═══════════════════════════════════════════ */
    [data-contrast="high"] {
      --cream:  #000000;
      --warm:   #111111;
      --white:  #ffffff;
      --ink:    #ffffff;
      --text:   #ffffff;
      --muted:  #e0e0e0;
      --border: rgba(255,255,255,.3);
      --teal:   #00e8e0;
      --teal-dk:#00c8c0;
      --teal-bg: rgba(0,232,224,.12);
      --teal-bg2: rgba(0,232,224,.2);
      --orange:  #ffb347;
      --orange-lt: #ffd080;
      --orange-bg: rgba(255,179,71,.15);
      --sh-sm: none; --sh: none; --sh-lg: none;
    }
    [data-contrast="high"] body { background: #000; color: #fff; }

    /* header stays readable */
    [data-contrast="high"] .header-top { background: #000; border-color: rgba(255,255,255,.3); }
    [data-contrast="high"] .header-nav { background: #111; border-bottom: 1px solid rgba(255,255,255,.3); }
    [data-contrast="high"] .nav-links a { color: #fff; }
    [data-contrast="high"] .nav-logo img,
    [data-contrast="high"] .drawer-head img { filter: invert(1); }

    /* cards & sections */
    [data-contrast="high"] .ws-card,
    [data-contrast="high"] .nc,
    [data-contrast="high"] .ci-form { background: #111; border: 1px solid rgba(255,255,255,.3); }
    [data-contrast="high"] .ws-card h3,
    [data-contrast="high"] .nc h3 { color: #fff; }
    [data-contrast="high"] .area-card { background: #111; border-color: rgba(255,255,255,.25); }
    [data-contrast="high"] .area-card h3 { color: #fff; }
    [data-contrast="high"] .area-card p  { color: #ccc; }
    [data-contrast="high"] .pill { background: #111; color: #fff; border-color: rgba(255,255,255,.3); }
    [data-contrast="high"] .pill:hover { background: rgba(0,232,224,.2); color: #00e8e0; }
    [data-contrast="high"] footer { background: #000; border-top: 1px solid rgba(255,255,255,.2); }
    [data-contrast="high"] .hero { background: #000; }
    [data-contrast="high"] .marquee { background: #1a1a00; border-top: 1px solid rgba(255,179,71,.4); border-bottom: 1px solid rgba(255,179,71,.4); }
    [data-contrast="high"] .cta-band { background: #111; border: 1px solid rgba(0,232,224,.3); }
    [data-contrast="high"] .news  { background: #111; }
    [data-contrast="high"] .mission { background: #000; }

    /* links always underlined in high contrast */
    [data-contrast="high"] a { text-decoration: underline; }
    [data-contrast="high"] .btn, [data-contrast="high"] .nav-links a,
    [data-contrast="high"] .area-link, [data-contrast="high"] .nc-read,
    [data-contrast="high"] .news-card-read { text-decoration: none; }
    [data-contrast="high"] .btn-teal  { background: #00e8e0; color: #000; border: 2px solid #00e8e0; }
    [data-contrast="high"] .btn-primary { background: #ffb347; color: #000; border: 2px solid #ffb347; }
    [data-contrast="high"] .btn-outline { color: #00e8e0; border-color: #00e8e0; background: transparent; }
    [data-contrast="high"] .btn-outline-white { color: #fff; border-color: #fff; }
