    /* ════════════════════════════════════════
   DESIGN TOKENS — V8 SYSTEM
════════════════════════════════════════ */
    :root {
      --b: #1D6EB5;
      --bd: #0d3d68;
      --bm: #2882cc;
      --bl: #5aaad8;
      --bp: #deeef9;
      --bpp: #f0f7fd;
      --paper: #f9f7f3;
      --cream: #f2ede4;
      --warm: #ede7dc;
      --ink: #1c1c1c;
      --mid: #555;
      --lite: #888;
      --rule: rgba(28, 28, 28, .1);
      --gold: #c8950c;
      --sand: #d4c9b4;
      --r: 12px;
    }

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

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

    body {
      font-family: 'Inter', sans-serif;
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased
    }

    img {
      display: block;
      width: 100%;
      object-fit: cover
    }

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

    ::-webkit-scrollbar {
      width: 5px
    }

    ::-webkit-scrollbar-track {
      background: var(--paper)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--b);
      border-radius: 99px
    }

    /* ── PAGE VISIBILITY ── */
    .page {
      display: none;
    }

    .page.active {
      display: block;
    }

    /* ════════════════════════════════════════
   SHARED: NAV
════════════════════════════════════════ */
    /* ── FLOATING NAV ── */
    #nav {
      position: fixed;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: calc(100% - 48px);
      max-width: 1100px;
      background: rgba(255, 255, 255, 0.4);
      /* Glass effect */
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 10px 10px 22px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
      transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 42px;
      height: 42px;
      padding: 0;
      background: none;
      border: none;
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #243b53;
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }

    #nav.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    #nav.nav-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    #nav.nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    #nav:hover {
      background: rgba(255, 255, 255, 1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      border-color: rgba(28, 28, 28, 0.05);
    }

    #nav.scrolled {
      background: rgba(255, 255, 255, 0.85);
      box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    }

    #nav.scrolled:hover {
      background: rgba(255, 255, 255, 1);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo {
      height: 38px;
      width: auto;
      opacity: 0.7;
      transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      cursor: pointer;
    }

    .nav-logo:hover {
      opacity: 1;
      transform: scale(1.08) translateY(-2px);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      padding: 7px 13px;
      font-size: .78rem;
      font-weight: 500;
      color: var(--mid);
      border-radius: 8px;
      transition: all .2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--b);
      background: var(--bp);
    }

    /* ── RESEARCH DROPDOWN ── */
    .nav-item-dropdown {
      position: relative;
    }

    .dropdown-trigger {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .chevron {
      font-size: 0.5rem;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0.7;
    }

    .nav-item-dropdown:hover .chevron {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(28, 28, 28, 0.08);
      border-radius: 10px;
      min-width: 140px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      padding: 6px 0;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1100;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .nav-item-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(4px);
    }

    .dropdown-menu li {
      width: 100%;
      padding: 0 6px;
    }

    .dropdown-menu a {
      display: block;
      width: 100%;
      padding: 8px 14px;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--mid);
      border-radius: 6px;
      transition: all 0.2s ease;
      text-align: left;
      white-space: nowrap;
    }

    .dropdown-menu a:hover {
      color: var(--b);
      background: var(--bp);
    }

    .nav-end {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-cta {
      background: var(--b);
      color: #fff;
      padding: 9px 20px;
      border-radius: 9px;
      font-size: .78rem;
      font-weight: 600;
      transition: all .2s;
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--bd);
      box-shadow: 0 3px 12px rgba(29, 110, 181, .35);
    }

    /* ════════════════════════════════════════
   SHARED: PAGE HERO BANNER
════════════════════════════════════════ */
    .page-hero {
      padding: 120px 48px 56px;
      max-width: 1100px;
      margin: 0 auto;
      border-bottom: 1px solid var(--rule);
    }

    .ph-breadcrumb {
      font-family: 'Courier Prime', monospace;
      font-size: .6rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--lite);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ph-breadcrumb a {
      color: var(--b);
      transition: opacity .2s;
    }

    .ph-breadcrumb a:hover {
      opacity: .7;
    }

    .ph-breadcrumb span {
      opacity: .4;
    }

    .ph-label {
      font-family: 'Courier Prime', monospace;
      font-size: .62rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--b);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .ph-label::before {
      content: '—';
      opacity: .5;
    }

    .page-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 400;
      letter-spacing: -.5px;
      line-height: 1.08;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .page-hero h1 em {
      font-style: italic;
      color: var(--b);
    }

    .page-hero p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--mid);
      max-width: 580px;
    }

    /* ════════════════════════════════════════
   SHARED: FOOTER
════════════════════════════════════════ */
    .v8-footer {
      background: #0b3460;
      padding: 52px 48px 28px;
      margin-top: 80px;
    }

    .footer-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 44px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .f-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 10px;
    }

    .f-desc {
      font-size: .8rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 16px;
    }

    .f-contact {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .fci {
      display: flex;
      gap: 8px;
      font-size: .75rem;
      color: rgba(255, 255, 255, .35);
      line-height: 1.5;
      align-items: flex-start;
    }

    .fci-icon {
      color: var(--bl);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .f-col-h {
      font-family: 'Courier Prime', monospace;
      font-size: .82rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 14px;
    }

    .f-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .f-col ul a {
      font-size: .82rem;
      color: rgba(255, 255, 255, .35);
      transition: color .2s;
    }

    .f-col ul a:hover {
      color: #fff;
    }

    .f-bottom {
      max-width: 1100px;
      margin: 24px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .f-bottom p {
      font-family: 'Courier Prime', monospace;
      font-size: .58rem;
      color: rgba(255, 255, 255, .15);
      letter-spacing: .3px;
    }

    .f-soc {
      display: flex;
      gap: 6px;
    }

    .fsb {
      width: 30px;
      height: 30px;
      border-radius: 7px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
      color: rgba(255, 255, 255, .25);
      transition: all .2s;
    }

    .fsb:hover {
      background: var(--b);
      border-color: var(--b);
      color: #fff;
    }

    /* ════════════════════════════════════════
   SHARED: SECTION WRAP
════════════════════════════════════════ */
    .sec {
      padding: 64px 48px;
    }

    .wrap {
      max-width: 1100px;
      margin: 0 auto;
    }

    .label {
      font-family: 'Courier Prime', monospace;
      font-size: .6rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--b);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .label::before {
      content: '—';
      opacity: .5;
    }

    /* ── REVEAL ── */
    .rv {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .6s ease, transform .6s ease;
    }

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

    .d1 {
      transition-delay: .08s
    }

    .d2 {
      transition-delay: .16s
    }

    .d3 {
      transition-delay: .24s
    }

    .d4 {
      transition-delay: .32s
    }

    /* ════════════════════════════════════════
   PAGE 1: STUDIES
════════════════════════════════════════ */
    .studies-filter-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      padding: 0 48px;
      max-width: 1100px;
      margin: 36px auto 0;
    }

    .filter-label {
      font-family: 'Courier Prime', monospace;
      font-size: .72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--bd);
      font-weight: 700;
      margin-right: 8px;
    }

    .filter-chip {
      font-size: .88rem;
      font-weight: 600;
      background: #fff;
      border: 2px solid var(--b);
      color: var(--b);
      padding: 9px 24px;
      border-radius: 100px;
      cursor: pointer;
      transition: all .2s;
      letter-spacing: .3px;
    }

    .filter-chip:hover,
    .filter-chip.active {
      background: var(--b);
      border-color: var(--b);
      color: #fff;
      box-shadow: 0 4px 14px rgba(29,110,181,.25);
    }

    .studies-count-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 48px;
      max-width: 1100px;
      margin: 28px auto 0;
    }

    .sc-count {
      font-family: 'Courier Prime', monospace;
      font-size: .62rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--lite);
    }

    .sc-sort {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .75rem;
      color: var(--mid);
    }

    .sc-sort select {
      font-size: .72rem;
      color: var(--mid);
      border: 1px solid var(--rule);
      background: #fff;
      padding: 5px 10px;
      border-radius: 6px;
      outline: none;
    }

    .studies-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 0 48px;
      max-width: 1100px;
      margin: 24px auto 0;
    }

    .study-card {
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: var(--r);
      overflow: hidden;
      transition: all .3s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    .study-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(29, 110, 181, .12);
      border-color: var(--bp);
    }

    .study-card-img {
      height: 200px;
      overflow: hidden;
      position: relative;
      background: var(--cream);
    }

    .study-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      transition: transform .5s ease;
    }

    .study-card:hover .study-card-img img {
      transform: scale(1.04);
    }

    .study-card-img-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--cream), var(--warm));
    }

    .study-card-img-placeholder span {
      font-size: 2.5rem;
      opacity: .4;
    }

    /* Document-cover cards (studies, monitors, briefs) — show the full portrait thumbnail, no cropping */
    #page-studies .study-card-img,
    #page-monitors .study-card-img,
    #page-media-monitors .study-card-img,
    #page-energy-monitors .study-card-img,
    #page-climate-monitors .study-card-img,
    .mon-card .study-card-img {
      height: 320px;
      background: var(--cream);
    }

    #page-studies .study-card-img img,
    #page-monitors .study-card-img img,
    #page-media-monitors .study-card-img img,
    #page-energy-monitors .study-card-img img,
    #page-climate-monitors .study-card-img img,
    .mon-card .study-card-img img {
      object-fit: contain;
      object-position: center;
    }

    .study-card-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .sc-type {
      font-family: 'Courier Prime', monospace;
      font-size: .57rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--b);
      margin-bottom: 8px;
      font-weight: 700;
    }

    .study-card-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
      flex: 1;
    }

    .sc-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--rule);
    }

    .sc-year {
      font-family: 'Courier Prime', monospace;
      font-size: .58rem;
      color: var(--lite);
      letter-spacing: 1px;
    }

    .sc-dl {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--b);
      color: #fff;
      padding: 7px 14px;
      border-radius: 7px;
      font-size: .72rem;
      font-weight: 600;
      transition: all .2s;
    }

    .sc-dl:hover {
      background: var(--bd);
      transform: translateY(-1px);
    }

    .study-featured {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 0;
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: var(--r);
      overflow: hidden;
      transition: all .3s;
      margin-bottom: 4px;
    }

    .study-featured:hover {
      box-shadow: 0 8px 32px rgba(29, 110, 181, .1);
      border-color: var(--bp);
    }

    .sf-img {
      overflow: hidden;
      min-height: 280px;
    }

    .sf-img img {
      height: 100%;
    }

    .sf-body {
      padding: 36px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .sf-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(90deg, var(--b), var(--bm));
      color: #fff;
      padding: 5px 12px;
      border-radius: 6px;
      font-family: 'Courier Prime', monospace;
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 14px;
      width: fit-content;
    }

    .sf-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.3;
      margin-bottom: 12px;
    }

    .sf-body p {
      font-size: .88rem;
      line-height: 1.8;
      color: var(--mid);
    }

    .sf-actions {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }

    .btn-b {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--b);
      color: #fff;
      padding: 11px 22px;
      border-radius: 9px;
      font-size: .82rem;
      font-weight: 600;
      transition: all .25s;
    }

    .btn-b:hover {
      background: var(--bd);
      transform: translateY(-1px);
    }

    .btn-outline-b {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: transparent;
      color: var(--b);
      border: 1.5px solid var(--b);
      padding: 11px 22px;
      border-radius: 9px;
      font-size: .82rem;
      font-weight: 600;
      transition: all .25s;
    }

    .btn-outline-b:hover {
      background: var(--b);
      color: #fff;
    }

    /* ════════════════════════════════════════
   PAGE 2: BRIEFS
════════════════════════════════════════ */
    .briefs-layout {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 48px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .briefs-sidebar {
      position: sticky;
      top: 100px;
      align-self: start;
    }

    .bs-title {
      font-family: 'Courier Prime', monospace;
      font-size: .6rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--lite);
      margin-bottom: 14px;
    }

    .bs-links {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .bs-link {
      padding: 9px 14px;
      font-size: .82rem;
      font-weight: 500;
      color: var(--mid);
      border-radius: 8px;
      cursor: pointer;
      transition: all .2s;
      border: 1px solid transparent;
    }

    .bs-link:hover,
    .bs-link.active {
      background: var(--bp);
      color: var(--b);
      border-color: rgba(29, 110, 181, .15);
    }

    .bs-stat-box {
      background: var(--bd);
      border-radius: var(--r);
      padding: 20px;
      margin-top: 28px;
    }

    .bsb-n {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 600;
      color: #fff;
      line-height: 1;
      letter-spacing: -1px;
    }

    .bsb-n sup {
      font-size: 1rem;
      color: #82c4f0;
    }

    .bsb-l {
      font-size: .72rem;
      color: rgba(255, 255, 255, .45);
      margin-top: 4px;
      line-height: 1.5;
    }

    .briefs-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .brief-row {
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 0;
      border-bottom: 1px solid var(--rule);
      cursor: pointer;
      transition: all .2s;
      background: #fff;
      border-radius: 0;
    }

    .brief-row:first-child {
      border-radius: var(--r) var(--r) 0 0;
      border-top: 1px solid var(--rule);
    }

    .brief-row:last-child {
      border-radius: 0 0 var(--r) var(--r);
    }

    .brief-row:hover {
      background: var(--bpp);
    }

    .brief-row:hover {
      padding-left: 0;
    }

    .br-img {
      overflow: hidden;
      height: 100%;
      min-height: 200px;
      background: var(--cream);
    }

    .br-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      transition: transform .4s ease;
    }

    .briefs-pagination {
      grid-column: 2 / 3;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 36px;
      flex-wrap: nowrap;
    }

    .pg-btn {
      min-width: 40px;
      height: 40px;
      padding: 0 14px;
      border: 1px solid var(--rule);
      background: #fff;
      border-radius: 8px;
      font-family: 'Courier Prime', monospace;
      font-size: .8rem;
      color: var(--ink);
      cursor: pointer;
      transition: all .2s;
    }

    .pg-btn:hover {
      border-color: var(--bp);
      color: var(--b);
    }

    .pg-btn.active {
      background: var(--b);
      color: #fff;
      border-color: var(--b);
    }

    .pg-btn:disabled {
      opacity: .4;
      cursor: default;
    }

    .pg-prev,
    .pg-next {
      font-weight: 600;
    }

    .brief-row:hover .br-img img {
      transform: scale(1.05);
    }

    .br-body {
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-left: 1px solid var(--rule);
    }

    .br-type {
      font-family: 'Courier Prime', monospace;
      font-size: .57rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--b);
      margin-bottom: 6px;
    }

    .br-body h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
    }

    .br-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 10px;
    }

    .br-year {
      font-family: 'Courier Prime', monospace;
      font-size: .57rem;
      color: var(--lite);
      letter-spacing: 1px;
    }

    .br-dl {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: .72rem;
      font-weight: 600;
      color: var(--b);
      transition: gap .2s;
    }

    .brief-row:hover .br-dl {
      gap: 10px;
      color: var(--bd);
    }

    /* ════════════════════════════════════════
   PAGE 3: TEAM
════════════════════════════════════════ */
    .team-intro {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .team-intro p {
      font-size: .97rem;
      line-height: 1.85;
      color: var(--mid);
      max-width: 560px;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 40px auto 0;
      padding: 0 48px;
    }

    .team-card {
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: var(--r);
      overflow: hidden;
      transition: all .3s;
      cursor: pointer;
    }

    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(29, 110, 181, .1);
      border-color: var(--bp);
    }

    .tc-img {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: var(--cream);
      position: relative;
    }

    .tc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      transition: transform .4s ease;
    }

    .team-card:hover .tc-img img {
      transform: scale(1.03);
    }

    .tc-img-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--bp), var(--cream));
    }

    .tc-initial {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      font-weight: 300;
      color: var(--b);
      opacity: .5;
    }

    .tc-body {
      padding: 20px;
    }

    .tc-role {
      font-family: 'Courier Prime', monospace;
      font-size: .57rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--b);
      margin-bottom: 5px;
    }

    .tc-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 10px;
      letter-spacing: -.2px;
    }

    .tc-body p {
      font-size: .8rem;
      line-height: 1.75;
      color: var(--mid);
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .tc-body p.tc-expand {
      display: none;
    }

    .team-card.expanded .tc-body p {
      -webkit-line-clamp: unset;
    }

    .team-card.expanded .tc-body p.tc-expand {
      display: block;
    }

    .tc-read-more {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: .75rem;
      font-weight: 600;
      color: var(--b);
      margin-top: 10px;
      cursor: pointer;
      transition: gap .2s;
    }

    .team-card:hover .tc-read-more {
      gap: 9px;
    }

    /* Featured CEO card */
    .team-card.featured {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 300px 1fr;
    }

    .team-card.featured .tc-img {
      height: auto;
      min-height: 280px;
    }

    .team-card.featured .tc-body {
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .team-card.featured .tc-body p {
      -webkit-line-clamp: 6;
    }

    /* ════════════════════════════════════════
   PAGE 4: CONTACT
════════════════════════════════════════ */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      max-width: 1100px;
      margin: 0 auto;
    }

    .contact-left {
      padding: 48px;
    }

    .contact-right {
      background: var(--bd);
      padding: 48px;
    }

    .cl-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 400;
      color: var(--ink);
      letter-spacing: -.4px;
      line-height: 1.2;
      margin-bottom: 28px;
    }

    .cl-heading em {
      font-style: italic;
      color: var(--b);
    }

    .contact-info-items {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 36px;
    }

    .ci-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .ci-icon-wrap {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--bp);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .ci-text strong {
      display: block;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .3px;
      text-transform: uppercase;
      color: var(--b);
      margin-bottom: 3px;
      font-family: 'Courier Prime', monospace;
    }

    .ci-text span {
      font-size: .88rem;
      color: var(--mid);
      line-height: 1.55;
    }

    .ci-text a {
      color: var(--b);
      transition: opacity .2s;
    }

    .ci-text a:hover {
      opacity: .7;
    }

    .contact-socials {
      display: flex;
      gap: 8px;
    }

    .csoc {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: var(--bp);
      border: 1px solid rgba(29, 110, 181, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .78rem;
      color: var(--b);
      transition: all .2s;
    }

    .csoc:hover {
      background: var(--b);
      color: #fff;
    }

    .contact-map {
      margin-top: 28px;
      border-radius: var(--r);
      overflow: hidden;
      height: 200px;
      border: 1px solid var(--rule);
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .map-img {
      position: absolute;
      inset: 0;
    }

    .map-img img {
      height: 100%;
      filter: saturate(.8);
    }

    .map-pin {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .map-pin-dot {
      background: var(--b);
      width: 16px;
      height: 16px;
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(29, 110, 181, .25), 0 0 0 8px rgba(29, 110, 181, .1);
    }

    /* Contact form */
    .cr-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: #fff;
      letter-spacing: -.3px;
      margin-bottom: 6px;
    }

    .cr-sub {
      font-size: .82rem;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 28px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .cf-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .cf-group label {
      font-family: 'Courier Prime', monospace;
      font-size: .6rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
    }

    .cf-group input,
    .cf-group textarea,
    .cf-group select {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 8px;
      padding: 12px 14px;
      font-size: .88rem;
      font-family: 'Inter', sans-serif;
      color: #fff;
      outline: none;
      transition: border-color .2s;
      resize: none;
      -webkit-appearance: none;
    }

    .cf-group input::placeholder,
    .cf-group textarea::placeholder {
      color: rgba(255, 255, 255, .25);
    }

    .cf-group input:focus,
    .cf-group textarea:focus {
      border-color: rgba(255, 255, 255, .35);
      background: rgba(255, 255, 255, .09);
    }

    .cf-group textarea {
      min-height: 120px;
    }

    .cf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .cf-submit {
      background: var(--gold);
      color: #3a2400;
      padding: 13px 28px;
      border-radius: 9px;
      font-size: .88rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all .25s;
      font-family: 'Inter', sans-serif;
      letter-spacing: .2px;
      display: flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
    }

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

    /* ════════════════════════════════════════
   PAGE 5: NEWS LISTING
════════════════════════════════════════ */
    .news-page-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 48px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .news-featured-hero {
      position: relative;
      border-radius: var(--r);
      overflow: hidden;
      min-height: 380px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      margin-bottom: 24px;
      cursor: pointer;
    }

    .nfh-bg {
      position: absolute;
      inset: 0;
    }

    .nfh-bg img {
      height: 100%;
      transition: transform 5s ease;
    }

    .news-featured-hero:hover .nfh-bg img {
      transform: scale(1.04);
    }

    .nfh-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 25, 50, .96) 25%, rgba(10, 25, 50, .4) 75%, rgba(10, 25, 50, .1) 100%);
    }

    .nfh-body {
      position: relative;
      z-index: 1;
      padding: 28px;
    }

    .nfh-tag {
      font-family: 'Courier Prime', monospace;
      font-size: .58rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nfh-tag::before {
      content: '★';
    }

    .nfh-body h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 10px;
    }

    .nfh-body p {
      font-size: .84rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .nfh-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, .2);
      color: #fff;
      padding: 9px 18px;
      border-radius: 7px;
      font-size: .78rem;
      font-weight: 600;
      transition: all .2s;
    }

    .nfh-link:hover {
      background: rgba(255, 255, 255, .22);
    }

    .news-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .ng3-card {
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: var(--r);
      overflow: hidden;
      cursor: pointer;
      transition: all .3s;
    }

    .ng3-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(29, 110, 181, .1);
      border-color: var(--bp);
    }

    .ng3-img {
      height: 150px;
      overflow: hidden;
      background: var(--cream);
    }

    .ng3-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .ng3-card:hover .ng3-img img {
      transform: scale(1.05);
    }

    .ng3-body {
      padding: 16px;
    }

    .ng3-tag {
      font-family: 'Courier Prime', monospace;
      font-size: .57rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--b);
      margin-bottom: 6px;
    }

    .ng3-body h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: .97rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
    }

    .ng3-date {
      font-size: .68rem;
      color: var(--lite);
      margin-top: 8px;
    }

    .news-list-more {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 24px;
    }

    .nl-row {
      display: grid;
      grid-template-columns: 100px 1fr;
      border-top: 1px solid var(--rule);
      cursor: pointer;
      transition: all .2s;
      background: #fff;
      border-radius: 0;
    }

    .nl-row:first-child {
      border-radius: var(--r) var(--r) 0 0;
      border: 1px solid var(--rule);
    }

    .nl-row:not(:first-child) {
      border-left: 1px solid var(--rule);
      border-right: 1px solid var(--rule);
    }

    .nl-row:last-child {
      border-bottom: 1px solid var(--rule);
      border-radius: 0 0 var(--r) var(--r);
    }

    .nl-row:hover {
      background: var(--bpp);
    }

    .nl-img {
      overflow: hidden;
      height: 80px;
    }

    .nl-img img {
      height: 100%;
      transition: transform .4s ease;
    }

    .nl-row:hover .nl-img img {
      transform: scale(1.06);
    }

    .nl-body {
      padding: 14px 18px;
      border-left: 1px solid var(--rule);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .nl-tag {
      font-family: 'Courier Prime', monospace;
      font-size: .55rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--b);
      margin-bottom: 4px;
    }

    .nl-body h5 {
      font-family: 'Cormorant Garamond', serif;
      font-size: .95rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
    }

    .nl-date {
      font-size: .65rem;
      color: var(--lite);
      margin-top: 3px;
    }

    /* Sidebar */
    .news-sidebar {}

    .nside-box {
      background: var(--bd);
      border-radius: var(--r);
      overflow: hidden;
      margin-bottom: 16px;
    }

    .nside-header {
      padding: 18px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .nside-header h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: #fff;
    }

    .nside-header p {
      font-size: .72rem;
      color: rgba(255, 255, 255, .35);
      margin-top: 2px;
    }

    .nside-items {
      padding: 8px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .nside-item {
      display: block;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .06);
      border-radius: 8px;
      padding: 12px;
      cursor: pointer;
      transition: all .2s;
      text-decoration: none;
      color: inherit;
    }

    .nside-item:hover {
      background: rgba(255, 255, 255, .08);
    }

    .nsi-tag {
      font-family: 'Courier Prime', monospace;
      font-size: .55rem;
      color: var(--gold);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .nside-item h5 {
      font-size: .8rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .75);
      line-height: 1.45;
    }

    .topics-box {
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: var(--r);
      padding: 18px 20px;
    }

    .topics-box h4 {
      font-family: 'Courier Prime', monospace;
      font-size: .58rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--lite);
      margin-bottom: 12px;
    }

    .topics-list {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .t-chip {
      font-size: .72rem;
      font-weight: 500;
      background: var(--paper);
      border: 1px solid var(--rule);
      color: var(--mid);
      padding: 5px 12px;
      border-radius: 100px;
      cursor: pointer;
      transition: all .2s;
    }

    .t-chip:hover {
      background: var(--bp);
      border-color: var(--b);
      color: var(--b);
    }

    .nside-subscribe {
      background: linear-gradient(135deg, var(--b), var(--bm));
      border-radius: var(--r);
      padding: 20px;
      margin-top: 16px;
    }

    .nsub-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
    }

    .nsub-desc {
      font-size: .75rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .nsub-form {
      display: flex;
      gap: 0;
      align-items: stretch;
      width: 100%;
    }

    .nsub-form input {
      flex: 1 1 auto;
      min-width: 0;
      box-sizing: border-box;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      border-right: none;
      border-radius: 8px 0 0 8px;
      padding: 10px 14px;
      font-size: .78rem;
      color: #fff;
      outline: none;
      font-family: 'Inter', sans-serif;
    }

    .nsub-form input::placeholder {
      color: rgba(255, 255, 255, .4);
    }

    .nsub-form button {
      flex: 0 0 auto;
      white-space: nowrap;
      background: #fff;
      color: var(--b);
      border: none;
      border-radius: 0 8px 8px 0;
      padding: 10px 16px;
      font-size: .78rem;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .2s;
    }

    .nsub-form button:hover {
      background: var(--gold);
      color: #3a2400;
    }

    [data-article] {
      cursor: pointer;
    }

    a.ra-card,
    a.ng3-card,
    a.nl-row {
      text-decoration: none;
      color: inherit;
    }

    /* ════════════════════════════════════════
   PAGE 6: NEWS ARTICLE
════════════════════════════════════════ */
    .article-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 64px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px 64px;
    }

    .article-main {}

    .article-hero-img {
      border-radius: var(--r);
      overflow: hidden;
      height: 420px;
      margin-bottom: 36px;
      box-shadow: 0 8px 36px rgba(0, 0, 0, .1);
    }

    .article-hero-img img {
      height: 100%;
    }

    .article-meta-row {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .am-tag {
      font-family: 'Courier Prime', monospace;
      font-size: .6rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      background: var(--bp);
      color: var(--b);
      padding: 5px 12px;
      border-radius: 6px;
      border: 1px solid rgba(29, 110, 181, .15);
    }

    .am-sep {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--rule);
    }

    .am-date {
      font-family: 'Courier Prime', monospace;
      font-size: .62rem;
      color: var(--lite);
      letter-spacing: 1px;
    }

    .am-author {
      font-size: .8rem;
      color: var(--mid);
    }

    .am-author strong {
      color: var(--ink);
      font-weight: 600;
    }

    .am-source {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: .75rem;
      color: var(--b);
      font-weight: 600;
      border-bottom: 1px solid var(--bp);
      padding-bottom: 1px;
    }

    .article-main h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      letter-spacing: -.5px;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 24px;
    }

    .article-main h1 em {
      font-style: italic;
      color: var(--b);
    }

    .article-divider {
      width: 48px;
      height: 3px;
      background: var(--b);
      border-radius: 2px;
      margin-bottom: 28px;
    }

    .article-body p {
      font-size: .97rem;
      line-height: 1.95;
      color: #333;
      margin-bottom: 18px;
    }

    .article-body p strong {
      color: var(--ink);
      font-weight: 700;
    }

    .article-body blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.25rem;
      line-height: 1.65;
      color: var(--bd);
      border-left: 3px solid var(--b);
      padding-left: 22px;
      margin: 28px 0;
    }

    .article-link-out {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--b);
      color: #fff;
      padding: 12px 24px;
      border-radius: 9px;
      font-size: .85rem;
      font-weight: 600;
      margin-top: 12px;
      transition: all .25s;
    }

    .article-link-out:hover {
      background: var(--bd);
      transform: translateY(-1px);
    }

    .article-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--rule);
    }

    .article-share {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--rule);
    }

    .as-label {
      font-family: 'Courier Prime', monospace;
      font-size: .6rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--lite);
    }

    .as-btn {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: var(--paper);
      border: 1px solid var(--rule);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
      color: var(--mid);
      transition: all .2s;
      cursor: pointer;
    }

    .as-btn:hover {
      background: var(--b);
      border-color: var(--b);
      color: #fff;
    }

    .related-articles {
      margin-top: 48px;
    }

    .ra-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 20px;
    }

    .ra-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .ra-card {
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      transition: all .3s;
    }

    .ra-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 24px rgba(29, 110, 181, .1);
      border-color: var(--bp);
    }

    .ra-img {
      height: 120px;
      overflow: hidden;
    }

    .ra-img img {
      height: 100%;
      transition: transform .4s ease;
    }

    .ra-card:hover .ra-img img {
      transform: scale(1.05);
    }

    .ra-body {
      padding: 14px;
    }

    .ra-tag {
      font-family: 'Courier Prime', monospace;
      font-size: .55rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--b);
      margin-bottom: 5px;
    }

    .ra-body h5 {
      font-family: 'Cormorant Garamond', serif;
      font-size: .95rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
    }

    /* Article sidebar */
    .article-sidebar {}

    .as-toc {
      background: var(--cream);
      border: 1px solid var(--sand);
      border-radius: var(--r);
      padding: 20px;
      margin-bottom: 20px;
      position: sticky;
      top: 100px;
    }

    .as-toc h4 {
      font-family: 'Courier Prime', monospace;
      font-size: .58rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--lite);
      margin-bottom: 14px;
    }

    .toc-items {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .toc-item {
      display: flex;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 7px;
      cursor: pointer;
      transition: all .2s;
    }

    .toc-item:hover {
      background: var(--bp);
    }

    .toc-num {
      font-family: 'Courier Prime', monospace;
      font-size: .58rem;
      color: var(--b);
      min-width: 18px;
    }

    .toc-text {
      font-size: .8rem;
      color: var(--mid);
      line-height: 1.4;
    }

    .as-cta-box {
      background: var(--bd);
      border-radius: var(--r);
      padding: 22px;
    }

    .ascb-icon {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }

    .as-cta-box h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
    }

    .as-cta-box p {
      font-size: .78rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .as-cta-btn {
      display: block;
      text-align: center;
      background: var(--b);
      color: #fff;
      padding: 10px 18px;
      border-radius: 8px;
      font-size: .8rem;
      font-weight: 600;
      transition: all .2s;
    }

    .as-cta-btn:hover {
      background: var(--bm);
    }

    /* ── RESPONSIVE ── */
    /* ── RELATED ITEMS (events) ── */
    .ev-ri {
      margin-top: 32px;
    }

    .ev-ri-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 14px;
    }

    .ri-acc {
      border: 1px solid var(--rule);
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
    }

    .ri-item {
      border-bottom: 1px solid var(--rule);
    }

    .ri-item:last-child {
      border-bottom: none;
    }

    .ri-head {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 15px 20px;
      background: #fff;
      border: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: .92rem;
      font-weight: 600;
      color: var(--ink);
      text-align: left;
      transition: background .2s;
    }

    .ri-head:hover {
      background: var(--bpp);
    }

    .ri-item.open .ri-head {
      background: var(--bpp);
      color: var(--b);
    }

    .ri-head .ri-count {
      font-family: 'Courier Prime', monospace;
      font-size: .62rem;
      color: var(--lite);
      margin-left: auto;
      margin-right: 10px;
      letter-spacing: 1px;
    }

    .ri-chev {
      font-size: .7rem;
      transition: transform .3s;
      color: var(--b);
    }

    .ri-item.open .ri-chev {
      transform: rotate(180deg);
    }

    .ri-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
    }

    .ri-item.open .ri-panel {
      max-height: 6000px;
    }

    .ri-panel-inner {
      padding: 18px 20px 22px;
    }

    .ri-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .ri-img {
      display: block;
      aspect-ratio: 4 / 3;
      border-radius: 8px;
      overflow: hidden;
      background: var(--cream);
      cursor: zoom-in;
    }

    .ri-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
      display: block;
    }

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

    .ri-video {
      position: relative;
      aspect-ratio: 16 / 9;
      margin-bottom: 14px;
      border-radius: 8px;
      overflow: hidden;
      background: #000;
    }

    .ri-video:last-child {
      margin-bottom: 0;
    }

    .ri-video iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .ri-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .ri-links a {
      color: var(--b);
      font-size: .85rem;
      font-weight: 500;
      display: inline-flex;
      gap: 8px;
      align-items: baseline;
      line-height: 1.5;
      transition: color .2s;
    }

    .ri-links a:hover {
      color: var(--bd);
      text-decoration: underline;
    }

    .ri-empty {
      color: var(--lite);
      font-size: .82rem;
      font-style: italic;
    }

    .ri-lightbox {
      position: fixed;
      inset: 0;
      z-index: 3000;
      background: rgba(0, 0, 0, .88);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      cursor: zoom-out;
    }

    .ri-lightbox.open {
      display: flex;
    }

    .ri-lightbox img {
      max-width: 95vw;
      max-height: 92vh;
      border-radius: 8px;
      box-shadow: 0 16px 70px rgba(0, 0, 0, .55);
    }

    .ri-lightbox-close {
      position: fixed;
      top: 18px;
      right: 24px;
      color: #fff;
      font-size: 1.6rem;
      cursor: pointer;
      opacity: .8;
      line-height: 1;
    }

    .ri-lightbox-close:hover {
      opacity: 1;
    }

    @media(max-width:700px) {
      .ri-gallery {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:960px) {
      #nav {
        width: calc(100% - 24px);
      }

      .nav-toggle {
        display: flex
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 14px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        padding: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: max-height .3s ease, opacity .25s ease, transform .25s ease;
      }

      #nav.nav-open .nav-links {
        max-height: 80vh;
        overflow-y: auto;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto
      }

      .nav-links>li {
        width: 100%
      }

      .nav-links>li>a {
        display: block;
        padding: 12px 14px;
        border-radius: 8px
      }

      .nav-item-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0 0 6px 14px;
        min-width: 0;
        pointer-events: auto
      }

      .dropdown-trigger .chevron {
        display: none
      }

      .sec,
      .page-hero,
      .studies-filter-bar,
      .studies-count-row,
      .studies-grid,
      .team-grid,
      .team-intro,
      .briefs-layout,
      .news-page-layout,
      .article-layout,
      .contact-layout {
        padding-left: 20px;
        padding-right: 20px
      }

      .studies-grid {
        grid-template-columns: 1fr 1fr
      }

      .study-featured {
        grid-template-columns: 1fr
      }

      .briefs-layout,
      .contact-layout,
      .news-page-layout,
      .article-layout {
        grid-template-columns: 1fr
      }

      .briefs-pagination {
        grid-column: 1/-1
      }

      .team-card.featured {
        grid-column: auto;
        grid-template-columns: 1fr
      }

      .team-grid {
        grid-template-columns: 1fr 1fr
      }

      .news-grid-3 {
        grid-template-columns: 1fr
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
      }

      .ra-grid {
        grid-template-columns: 1fr
      }

      .cf-row {
        grid-template-columns: 1fr
      }
    }

    @media(min-width:961px) and (max-width:1120px) {
      .nav-links {
        gap: 0
      }

      .nav-links a {
        padding: 7px 9px;
        font-size: .73rem
      }

      #nav {
        padding-left: 18px
      }
    }

    @media(max-width:600px) {

      .studies-grid,
      .team-grid {
        grid-template-columns: 1fr
      }

      .footer-grid {
        grid-template-columns: 1fr
      }

      .brief-row {
        grid-template-columns: 1fr
      }

      .brief-row .br-img {
        height: 300px;
        min-height: 0
      }

      .nav-cta {
        padding: 8px 14px;
        font-size: .78rem
      }
    }

    @media(max-width:400px) {
      .sec {
        padding-left: 14px;
        padding-right: 14px
      }

      .nl-row {
        grid-template-columns: 80px 1fr
      }

      .nav-cta {
        display: none
      }
    }

/* ── MONITORS + CAREERS STYLES (was second <style> block) ── */
    .mon-card {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      cursor: pointer
    }

    .mon-card .sc-dl {
      color: #fff
    }

    .mm-pagination {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      margin: 34px auto 0;
      max-width: 1100px;
      padding: 0 48px
    }

    .mm-search {
      margin-left: auto;
      min-width: 210px;
      max-width: 300px;
      padding: 9px 14px;
      border: 1px solid var(--rule, #e7e2d6);
      border-radius: 8px;
      font-size: .85rem;
      font-family: inherit;
      color: var(--ink, #1a1a1a);
      background: #fff;
      outline: none;
      transition: border-color .2s, box-shadow .2s
    }

    .mm-search:focus {
      border-color: var(--b, #1d6eb5);
      box-shadow: 0 0 0 3px rgba(29, 110, 181, .12)
    }

    .mm-empty {
      grid-column: 1/-1;
      text-align: center;
      padding: 48px 0;
      color: var(--mid, #555);
      font-size: .95rem
    }

    @media(max-width:600px) {
      .mm-search {
        margin-left: 0;
        width: 100%;
        max-width: none
      }
    }

    .career-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      background: #fff;
      border: 1px solid var(--rule, #e7e2d6);
      border-radius: var(--r, 14px);
      padding: 22px 26px;
      margin-bottom: 14px;
      cursor: pointer;
      transition: box-shadow .2s, transform .2s
    }

    .career-card:hover {
      box-shadow: 0 12px 32px rgba(0, 0, 0, .07);
      transform: translateY(-2px)
    }

    .career-card .cc-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.2rem;
      margin: 0 0 8px;
      color: #1a1a1a
    }

    .career-card .cc-meta {
      display: flex;
      gap: 8px;
      flex-wrap: wrap
    }

    .cc-chip {
      font-family: 'Courier Prime', monospace;
      font-size: .62rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      background: var(--cream, #f5f1e8);
      border: 1px solid var(--rule, #e7e2d6);
      border-radius: 40px;
      padding: 5px 12px;
      color: var(--mid, #555)
    }

    .career-card .cc-go {
      flex: 0 0 auto;
      font-family: 'Courier Prime', monospace;
      font-size: .7rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold, #c8a24a);
      white-space: nowrap
    }

    .career-apply {
      background: var(--cream, #f5f1e8);
      border: 1px solid var(--rule, #e7e2d6);
      border-radius: var(--r, 14px);
      padding: 22px 26px
    }

    .career-apply h3 {
      margin: 0 0 8px;
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.1rem
    }

    .career-apply p {
      margin: 0;
      line-height: 1.7;
      color: var(--mid, #555)
    }

    .job-body h3 {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.15rem;
      margin: 26px 0 10px;
      color: #1a1a1a
    }

    .job-body ul {
      margin: 0 0 16px;
      padding-left: 20px
    }

    .job-body li {
      margin-bottom: 7px;
      line-height: 1.65
    }

    @media(max-width:600px) {
      .career-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
      }

      .mm-pagination {
        padding: 0 20px
      }
    }

    /* ── MOBILE PERFORMANCE ──
       A fixed element with backdrop-filter: blur() must re-sample and re-blur
       everything behind it on every scroll frame — the main cause of scroll jank
       on phones. Replace the live blur with an opaque bar on small screens. */
    @media (max-width: 768px) {

      #nav,
      #nav.scrolled {
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }

      .dropdown-menu {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }
    }
