        /* ----------------------------------------------------
      Sleek Modern Revamp (single-file)
      - Keep background texture/gradients
      - Reduce “foggy boxes” / remove gratuitous cards
      - Professional accent: restrained slate + muted teal
      - Glass navbar: transparent -> subtle translucent
      - Initiatives: concise sticky TOC w/ focused active item
      - Removed video section entirely
      - Subtle reveal only (respects reduced motion)
    ----------------------------------------------------- */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-sans); background: var(--bg); color: var(--fg); line-height: 1.6; }
    img { max-width: 100%; display: block; }
    a { color: inherit; }

    :root{
      /* Dark, professional base */
      --bg: #070b14;
      --bg2: #0a1020;

      /* Typography */
      --fg: rgba(255,255,255,0.92);
      --muted: rgba(255,255,255,0.68);
      --muted2: rgba(255,255,255,0.55);

      /* Surfaces are minimal and crisp (not foggy) */
      --line: rgba(255,255,255,0.10);
      --line2: rgba(255,255,255,0.16);

      /* Professional accents (restrained) */
      --accent: #4aa7a0;      /* muted teal */
      --accent-rgb: 74, 167, 160;
      --accent2: #6b7fd6;     /* muted indigo */
      --warm: #caa96a;        /* muted gold (sparingly) */

      --shadow: 0 18px 46px rgba(0,0,0,0.45);
      --container: 1180px;

      --radius-lg: 16px;
      --radius-md: 12px;
      --radius-sm: 10px;

      --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      --font-serif: 'Playfair Display', Georgia, serif;
    }

    /* Background kept */
    .bg-wrap {
      position: fixed;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(900px 520px at 12% 8%, rgba(107,127,214,0.14), transparent 58%),
        radial-gradient(900px 520px at 86% 6%, rgba(74,167,160,0.12), transparent 60%),
        radial-gradient(800px 640px at 50% 98%, rgba(202,169,106,0.08), transparent 60%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
    }
    .noise {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: 0.08;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
      background-size: 160px 160px;
      mix-blend-mode: overlay;
    }

    .container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      * { animation: none !important; transition: none !important; }
    }

    /* ----------------------------
      Header: subtle liquid glass
    ----------------------------- */
    .header{
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
    }
    .header.scrolled{
      background: rgba(7, 11, 20, 0.46);
      backdrop-filter: blur(14px) saturate(140%);
      border-color: rgba(255,255,255,0.08);
    }

    .header-inner{
      height: 72px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }

    .logo{
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      min-width: 220px;
    }
    .logo img{
      height: 52px;
      width: auto;
      filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
    }
    .logo-text{
      font-family: var(--font-serif);
      font-weight: 600;
      font-size: 1.05rem;
      letter-spacing: 0.02em;
      white-space: nowrap;
      color: rgba(255,255,255,0.90);
    }

    .nav{
      display: none;
      justify-content: center;
      gap: 1.5rem;
    }
    .nav a{
      text-decoration: none;
      font-size: 0.9rem;
      color: var(--muted);
      padding: 0.15rem 0.1rem;
      transition: color 180ms ease;
    }
    .nav a:hover{ color: rgba(255,255,255,0.92); }
    .nav a.active{
      color: rgba(255,255,255,0.92);
      text-decoration: underline;
      text-decoration-color: rgba(74,167,160,0.65);
      text-decoration-thickness: 2px;
      text-underline-offset: 10px;
    }

    .actions{
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 0.7rem;
      min-width: 220px;
    }

    .btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.62rem 1.0rem;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.14);
      background: transparent;
      color: rgba(255,255,255,0.88);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.92rem;
      transition: border-color 180ms ease, background 180ms ease, transform 150ms ease;
      white-space: nowrap;
    }
    .btn:hover{
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.22);
      transform: translateY(-1px);
    }
    .btn:active{ transform: translateY(0); }

    .btn-primary{
      border-color: #255da7;
      background: #1c5698;
      color: #fff;
    }
    .btn-primary:hover{
      border-color: #2e8880;
      background: #2e8880;
    }

    .mobile-btn{
      display: inline-flex;
      padding: 0.55rem;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.14);
      background: transparent;
      color: rgba(255,255,255,0.9);
      cursor: pointer;
      transition: background 180ms ease, border-color 180ms ease;
    }
    .mobile-btn:hover{ background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); }
    .mobile-btn svg{ width: 22px; height: 22px; }

    .mobile-drawer{
      display: none;
      border-top: 1px solid rgba(255,255,255,0.08);
      background: rgba(7, 11, 20, 0.56);
      backdrop-filter: blur(14px) saturate(140%);
    }
    .mobile-drawer.active{ display: block; }
    .mobile-links{
      padding: 0.9rem 0;
      display: grid;
      gap: 0.5rem;
    }
    .mobile-links a{
      text-decoration: none;
      color: var(--muted);
      padding: 0.7rem 0.9rem;
      border-radius: 12px;
      border: 1px solid transparent;
      transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
    }
    .mobile-links a:hover{
      color: rgba(255,255,255,0.92);
      background: rgba(255,255,255,0.05);
      border-color: rgba(255,255,255,0.12);
    }

    @media (min-width: 860px){
      .nav{ display: flex; }
      .mobile-btn{ display: none; }
    }

    /* ----------------------------
      Hero: clean, minimal overlays
    ----------------------------- */
    section{ scroll-margin-top: 90px; }

    .hero{
      min-height: 92vh;
      padding-top: 72px;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-bg{
      position: absolute;
      inset: 0;
      background: url("/brandon.png") center/cover no-repeat;
      transform: scale(1.06);
      filter: saturate(0.85) contrast(1.06);
      will-change: transform;
    }
    .hero-bg::after{
      content:'';
      position:absolute;
      inset:0;
      background:
        radial-gradient(900px 520px at 50% 35%, rgba(0,0,0,0.26), rgba(0,0,0,0.70)),
        linear-gradient(180deg, rgba(7,11,20,0.35), rgba(7,11,20,0.88));
    }

    .hero-content{
      position: relative;
      z-index: 1;
      max-width: 980px;
      padding: 0 1.25rem;
      text-align: center;
    }

    .kicker{
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 1.5rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.78);
    }
    .kicker .dot{
      width: 8px; height: 8px; border-radius: 999px;
      background: rgba(202,169,106,0.9);
      box-shadow: 0 0 0 5px rgba(202,169,106,0.12);
    }

    .hero h1{
      font-family: var(--font-serif);
      font-weight: 600;
      letter-spacing: 0.01em;
      line-height: 1.06;
      margin: 1.1rem 0 0.9rem;
      font-size: clamp(2.6rem, 6.4vw, 4.5rem);
      text-wrap: balance;
    }
    .hero p{
      max-width: 720px;
      margin: 0 auto;
      color: rgba(255,255,255,0.80);
      font-size: 1.12rem;
      line-height: 1.75;
      text-wrap: pretty;
    }

    .hero-cta{
      margin-top: 1.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      align-items: center;
      justify-content: center;
    }
    .btn-lg{ padding: 0.85rem 1.3rem; font-size: 1.0rem; }
    .btn-plain{
      border-color: rgba(255,255,255,0.18);
      background: transparent;
      color: rgba(255,255,255,0.90);
    }
    .btn-plain:hover{
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.26);
    }
    @media (min-width: 720px){
      .hero-cta{ flex-direction: row; }
    }

    /* ----------------------------
      Section headings (sleek)
    ----------------------------- */
    .section{ padding: 5.2rem 0; }
    .section-head{
      max-width: 900px;
      display: grid;
      gap: 0.85rem;
      margin-bottom: 2.1rem;
    }
    .eyebrow{
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-size: 0.80rem;
      color: rgba(255,255,255,0.62);
    }
    .h2{
      font-family: var(--font-serif);
      font-size: clamp(2.0rem, 4.1vw, 3.0rem);
      line-height: 1.15;
    }
    .lead{
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.75;
    }

    /* ----------------------------
      Minimal dividers + layout
    ----------------------------- */
    .divider{
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
      margin: 2.2rem 0 0;
    }

    /* ----------------------------
      Subtle reveal only
    ----------------------------- */
    .reveal{
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 650ms ease, transform 650ms ease;
    }
    .reveal.in{
      opacity: 1;
      transform: translateY(0);
    }

    /* ----------------------------
      Our Story (no spam boxes)
    ----------------------------- */
    .story-grid{
      display: grid;
      gap: 2.0rem;
      align-items: center;
    }
    .story-media{
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.02);
      box-shadow: var(--shadow);
      min-height: 320px;
    }
    .story-media img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.95) contrast(1.04);
      transform: scale(1.02);
    }

    .story-actions{
      margin-top: 1.35rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    @media (min-width: 980px){
      .story-grid{ grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
    }

    /* ----------------------------
      Initiatives: concise sidebar
    ----------------------------- */
    .initiatives-shell{
      display: grid;
      gap: 1.25rem;
      align-items: start;
    }

    /* Sleek TOC: just labels; active grows/focuses */
    .toc{
      position: sticky;
      top: 96px;
      padding: 0.85rem 0.2rem;
      border-left: 1px solid rgba(255,255,255,0.10);
    }
    .toc-title{
      padding: 0 0.9rem 0.75rem;
      color: rgba(255,255,255,0.72);
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    .toc a{
      display: flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.55rem 0.9rem;
      text-decoration: none;
      color: rgba(255,255,255,0.66);
      border-radius: 10px;
      transition: color 180ms ease, background 180ms ease, transform 180ms ease;
      transform-origin: left center;
    }
    .toc a:hover{
      color: rgba(255,255,255,0.86);
      background: rgba(255,255,255,0.04);
    }

    .toc .marker{
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.22);
      flex-shrink: 0;
      transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
    }

    .toc a.active{
      color: rgba(255,255,255,0.92);
      transform: translateX(2px);
    }
    .toc a.active .marker{
      background: rgba(74,167,160,0.92);
      transform: scale(1.6);
      box-shadow: 0 0 0 6px rgba(74,167,160,0.12);
    }

    .toc .label{
      font-weight: 600;
      font-size: 0.95rem;
      line-height: 1.2;
    }

    /* Main initiative articles: crisp, minimal borders */
    .initiative{
      padding-top: 3rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      /*height: 300px;*/
    }
    .initiative:first-child{ border-top: 0; padding-top: 0; }

    .initiative h3{
      font-family: var(--font-serif);
      font-size: 1.55rem;
      line-height: 1.2;
      letter-spacing: 0.01em;
    }
    .initiative p{
      margin-top: 0.65rem;
      color: rgba(255,255,255,0.74);
      max-width: 70ch;
      line-height: 1.75;
      font-size: 1.02rem;
    }

    .mini{
      margin-top: 0.9rem;
      display: grid;
      gap: 0.6rem;
      color: rgba(255,255,255,0.72);
      font-size: 0.95rem;
    }
    .mini .row{
      display: flex;
      gap: 0.6rem;
      align-items: baseline;
    }
    .mini .k{
      min-width: 110px;
      color: rgba(255,255,255,0.52);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.78rem;
    }
    .mini .v{
      color: rgba(255,255,255,0.78);
      font-weight: 500;
    }

    @media (min-width: 980px){
      .initiatives-shell{ grid-template-columns: 0.55fr 1.45fr; gap: 2.25rem; }
      .toc{ padding-top: 1.0rem; }
    }

    /* ----------------------------
      Events: clean grid
    ----------------------------- */
    .events-top{
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 1.6rem;
    }

    .events-grid{
      display: grid;
      gap: 1.15rem;
    }

    .event{
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.02);
      transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
    }
    .event:hover{
      transform: translateY(-2px);
      border-color: rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.03);
    }

    .event-media{
      aspect-ratio: 3/2;
      background: rgba(255,255,255,0.02);
      overflow: hidden;
    }
    .event-media img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.95) contrast(1.04);
      transform: scale(1.02);
    }

    .event-body{ padding: 1.15rem 1.15rem 1.25rem; }
    .event h3{
      font-family: var(--font-serif);
      font-size: 1.25rem;
      margin-bottom: 0.55rem;
    }
    .meta{
      display: flex;
      gap: 0.6rem;
      align-items: center;
      color: rgba(255,255,255,0.65);
      font-size: 0.92rem;
      margin-top: 0.35rem;
    }
    .meta svg{ width: 16px; height: 16px; opacity: 0.9; }

    @media (min-width: 820px){
      .events-top{ flex-direction: row; align-items: flex-end; }
      .events-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
      .event-body{ padding: 1.25rem 1.25rem 1.35rem; }
    }

    /* ----------------------------
      Newsletter: simple, no cards
    ----------------------------- */
    .form{
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
      max-width: 520px;
    }
    .input{
      padding: 0.85rem 1.0rem;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.14);
      background: transparent;
      color: rgba(255,255,255,0.90);
      font-size: 1rem;
      outline: none;
      transition: border-color 180ms ease, background 180ms ease;
    }
    .input::placeholder{ color: rgba(255,255,255,0.52); }
    .input:focus{
      border-color: rgba(74,167,160,0.55);
      background: rgba(255,255,255,0.04);
    }
    @media (min-width: 720px){
      .form{ flex-direction: row; }
      .form .input{ flex: 1; }
    }

    /* ----------------------------
      Membership: minimal list
    ----------------------------- */
    .member-grid{
      display: grid;
      gap: 1.25rem;
      align-items: center;
    }
    .checks{
      list-style: none;
      display: grid;
      gap: 0.75rem;
      margin-top: 1.1rem;
      margin-bottom: 1.5rem;
      color: rgba(255,255,255,0.80);
    }
    .checks li{
      display: flex;
      gap: 0.6rem;
      align-items: flex-start;
    }
    .check{
      width: 20px; height: 20px;
      border-radius: 50%;
      border: 1px solid rgba(74,167,160,0.35);
      background: rgba(74,167,160,0.10);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .check svg{ width: 13px; height: 13px; color: rgba(255,255,255,0.88); }

    .member-media{
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.02);
      aspect-ratio: 1/1;
    }
    .member-media img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.95) contrast(1.04);
    }
    @media (min-width: 980px){
      .member-grid{ grid-template-columns: 1.2fr 0.8fr; gap: 2.25rem; }
    }

    /* ----------------------------
      Footer: clean columns
    ----------------------------- */
    .footer{
      padding: 4rem 0 2.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      background: rgba(0,0,0,0.14);
      backdrop-filter: blur(10px);
    }
    .footer-grid{
      display: grid;
      gap: 1.6rem;
      padding-bottom: 2rem;
    }
    .footer h4{
      color: rgba(255,255,255,0.88);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .footer p{ color: rgba(255,255,255,0.64); }
    .footer ul{ list-style: none; display: grid; gap: 0.55rem; margin-top: 0.8rem; }
    .footer a{ text-decoration: none; color: rgba(255,255,255,0.62); transition: color 180ms ease; }
    .footer a:hover{ color: rgba(255,255,255,0.90); }

    .social{
      display: flex;
      gap: 0.6rem;
      margin-top: 1.0rem;
    }
    .social a{
      width: 42px; height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.14);
      background: transparent;
      display: grid;
      place-items: center;
      transition: background 180ms ease, border-color 180ms ease, transform 160ms ease;
    }
    .social a:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,0.05);
      border-color: rgba(255,255,255,0.22);
    }
    .social svg{ width: 18px; height: 18px; color: rgba(255,255,255,0.82); }

    .footer-bottom{
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
      text-align: center;
      color: rgba(255,255,255,0.52);
      font-size: 0.9rem;
    }
    @media (min-width: 880px){
      .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; }
    }
    /* Layout wrapper for your section (assumes your existing .section/.container styles) */
    .newsletter-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 28px;
      align-items: start;
    }

    .newsletter-left .newsletter-logo {
      width: min(520px, 90%);
      display: block;
      margin: 12px auto 8px;
    }

    .newsletter-form {
      margin-top: 18px;
      display: grid;
      gap: 10px;
    }

    .form-note {
      margin: 2px 0 0;
      font: 500 12px/1.4 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      color: rgba(0,0,0,.62);
    }

    .past-newsletters-head {
      color: rgba(10,10,10,.86);
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 10px;
    }
    .past-newsletters-title {
      font: 800 16px/1.2 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      color: rgba(250,250,250,.86);
      letter-spacing: -0.01em;
    }
    .past-newsletters-sub {
      font: 600 12px/1.2 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      color: rgba(250,250,250,.56);
    }

    /* Responsive: stack viewer under form */
    @media (max-width: 980px) {
      .newsletter-grid {
        grid-template-columns: 1fr;
      }
      .past-newsletters-head {
        margin-top: 16px;
      }
    }

    /* -------- Stacking Cards (newsletter portrait variant) -------- */
    .sc-newsletters {
      --sc-h: 620px;
      --sc-radius: 22px;
      --sc-shadow: 0 18px 50px rgba(0,0,0,.18);
      --sc-shadow-soft: 0 10px 22px rgba(0,0,0,.12);
      --sc-text: #ffffff;
      width: 100%;
    }

    .sc-newsletters .sc-viewport {
      height: var(--sc-h);
      width: 100%;
      margin: 0;
      position: relative;
      overflow: hidden;
      border-radius: calc(var(--sc-radius) + 8px);
      background: rgba(0,0,0,0);
      outline: none;
      border: 1px solid rgba(0,0,0,.06);
    }

    .sc-newsletters .sc-viewport::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(900px 520px at 10% 10%, rgba(0,0,0,.05), transparent 55%),
        radial-gradient(800px 520px at 90% 90%, rgba(0,0,0,.03), transparent 60%);
      opacity: .9;
      z-index: 0;
    }

    .sc-newsletters .sc-hint {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 30;
      display: flex;
      gap: 8px;
      align-items: center;
      user-select: none;
      pointer-events: none;
    }

    .sc-newsletters .sc-hint__pill {
      font: 600 12px/1.1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      letter-spacing: .02em;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.92);
      color: rgba(0,0,0,.75);
      border: 1px solid rgba(0,0,0,.08);
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
      transform: translateZ(0);
      opacity: .9;
    }

    .sc-newsletters .sc-viewport:not(.sc-active) .sc-hint__pill {
      opacity: .65;
    }

    .sc-newsletters .sc-stack {
      position: relative;
      height: 100%;
      width: 100%;
      z-index: 10;
    }

    .sc-newsletters .sc-card {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 22px;
      transform-origin: 50% 82%;
      will-change: transform, opacity, filter;
    }

    /* PORTRAIT CARD: fixed aspect ratio, newsletter-like layout */
    .sc-newsletters .sc-card__inner {
      width: min(420px, 92%);
      aspect-ratio: 3 / 4; /* portrait */
      height: auto;
      border-radius: var(--sc-radius);
      box-shadow: var(--sc-shadow);
      background: var(--sc-card-bg, #111827);
      color: var(--sc-text);
      padding: 22px 22px 18px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* Subtle readable overlay */
    .sc-newsletters .sc-card__inner::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(520px 360px at 15% 15%, rgba(0,0,0,.24), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,0) 60%);
      pointer-events: none;
    }

    /* Newsletter content */
    .nl-head, .nl-body {
      position: relative;
      z-index: 2;
    }

    .nl-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.16);
      font: 800 11px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      letter-spacing: .08em;
      text-transform: uppercase;
      width: fit-content;
    }

    .nl-title {
      margin: 12px 0 4px;
      font: 900 20px/1.15 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      letter-spacing: -0.02em;
    }

    .nl-meta {
      margin: 0 0 12px;
      font: 700 12px/1.2 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      opacity: .9;
    }

    .nl-body {
      margin-top: 6px;
      font: 600 13px/1.55 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      opacity: .98;
      display: grid;
      gap: 10px;
      overflow: hidden;
    }

    .nl-body p {
      margin: 0;
    }

    .nl-body ul {
      margin: 0;
      padding-left: 18px;
      display: grid;
      gap: 6px;
    }

    .nl-ctaRow {
      margin-top: auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      padding-top: 14px;
    }

    .nl-link {
      color: rgba(255,255,255,.98);
      text-decoration: none;
      font: 900 13px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      letter-spacing: -0.01em;
      padding: 10px 12px;
      border-radius: 12px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.16);
    }

    .nl-link:hover {
      background: rgba(255,255,255,.18);
    }

    .nl-tag {
      font: 800 11px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      letter-spacing: .02em;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(0,0,0,.18);
      border: 1px solid rgba(255,255,255,.12);
      opacity: .95;
    }

    /* Progress */
    .sc-newsletters .sc-progress {
      position: absolute;
      right: 14px;
      bottom: 14px;
      z-index: 30;
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 999px;
      padding: 10px 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
      color: rgba(0,0,0,.75);
      font: 800 12px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    }

    .sc-newsletters .sc-progress__bar {
      width: 120px;
      height: 6px;
      border-radius: 999px;
      background: rgba(0,0,0,.10);
      overflow: hidden;
    }

    .sc-newsletters .sc-progress__fill {
      display: block;
      height: 100%;
      width: 0%;
      background: rgba(0,0,0,.55);
      border-radius: 999px;
      transition: width 220ms ease;
    }

    .sc-newsletters .sc-progress__text { opacity: .9; }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .sc-newsletters .sc-card { transition: none !important; }
      .sc-newsletters .sc-progress__fill { transition: none !important; }
    }

    /* SR-only helper */
    .sr-only {
      position: absolute !important;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0);
      white-space: nowrap; border: 0;
    }

    /* ============================================
       INNER PAGES - Page Header
       ============================================ */

    .page-header {
      min-height: 38vh;
      display: flex;
      align-items: flex-end;
      padding-top: 80px;
      padding-bottom: 3.5rem;
      position: relative;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .page-header::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 110%, rgba(74,167,160,0.10) 0%, transparent 65%);
      pointer-events: none;
    }

    .page-header-content { position: relative; }
    .page-header-content .eyebrow { margin-bottom: 0.75rem; }

    .page-nl-logo {
      height: 52px;
      width: auto;
      margin-bottom: 1rem;
      display: block;
    }

    /* ============================================
       TEAM CARDS - Interactive hover/tap
       ============================================ */

    .tc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 2.5rem;
    }

    @media (max-width: 1100px) { .tc-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 720px)  { .tc-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; } }

    .tc-card {
      position: relative;
      aspect-ratio: 3 / 4;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      outline: none;
      background: linear-gradient(160deg, rgba(74,167,160,0.07) 0%, rgba(0,0,0,0.5) 100%);
      border: 1px solid rgba(255,255,255,0.07);
      transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
      -webkit-tap-highlight-color: transparent;
      user-select: none;
    }

    .tc-card:hover,
    .tc-card:focus-visible {
      transform: translateY(-5px);
      box-shadow: 0 24px 52px rgba(0,0,0,0.5), 0 0 0 1px color-mix(in srgb, var(--ca) 35%, transparent);
      border-color: color-mix(in srgb, var(--ca) 40%, transparent);
    }

    .tc-card:focus-visible { box-shadow: 0 0 0 3px var(--accent); }

    .tc-face {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem 1rem 5rem;
      background: linear-gradient(175deg, color-mix(in srgb, var(--ca) 14%, transparent) 0%, rgba(10,12,18,0.65) 100%);
    }

    .tc-monogram {
      width: clamp(52px, 14%, 68px);
      aspect-ratio: 1;
      border-radius: 50%;
      background: var(--ca);
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--ca) 22%, transparent), 0 8px 24px rgba(0,0,0,0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-serif);
      font-size: clamp(0.9rem, 3.5%, 1.3rem);
      font-weight: 700;
      color: white;
      letter-spacing: 0.02em;
      flex-shrink: 0;
      margin-bottom: 1.1rem;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .tc-card:hover .tc-monogram,
    .tc-card:focus-visible .tc-monogram {
      box-shadow: 0 0 0 7px color-mix(in srgb, var(--ca) 28%, transparent), 0 12px 32px rgba(0,0,0,0.55);
      transform: scale(1.07);
    }

    .tc-monogram--plus {
      font-family: var(--font-sans);
      font-size: clamp(1.3rem, 5%, 1.7rem);
      font-weight: 300;
      letter-spacing: 0;
      border: 2px dashed color-mix(in srgb, var(--ca) 65%, transparent);
      background: color-mix(in srgb, var(--ca) 10%, transparent);
      box-shadow: none;
      color: var(--ca);
    }

    .tc-nameplate { text-align: center; }

    .tc-name {
      font-size: clamp(0.78rem, 2.1vw, 0.95rem);
      font-weight: 600;
      line-height: 1.25;
      color: var(--fg);
      margin-bottom: 0.22em;
    }

    .tc-role {
      font-size: clamp(0.62rem, 1.7vw, 0.74rem);
      font-weight: 600;
      color: var(--ca);
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }

    .tc-prompt {
      position: absolute;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.67rem;
      font-weight: 600;
      color: rgba(255,255,255,0.38);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.2s, opacity 0.3s;
      white-space: nowrap;
    }

    .tc-prompt svg { width: 13px; height: 13px; stroke: currentColor; flex-shrink: 0; }

    .tc-card:hover .tc-prompt,
    .tc-card:focus-visible .tc-prompt { color: var(--ca); }

    .tc-bio {
      position: absolute;
      inset: 0;
      background: linear-gradient(175deg, color-mix(in srgb, var(--ca) 20%, #0d1117 80%) 0%, #0d1117 60%);
      transform: translateY(100%);
      transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: color-mix(in srgb, var(--ca) 35%, transparent) transparent;
      padding: 1.4rem 1.2rem;
      display: flex;
      flex-direction: column;
    }

    .tc-bio-inner { flex: 1; }

    .tc-bio-name {
      font-family: var(--font-serif);
      font-size: clamp(0.9rem, 2.5vw, 1.08rem);
      font-weight: 600;
      color: var(--fg);
      line-height: 1.2;
      margin-bottom: 0.2em;
    }

    .tc-bio-role {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ca);
      margin-bottom: 0.9rem;
    }

    .tc-bio p {
      font-size: clamp(0.73rem, 1.85vw, 0.83rem);
      line-height: 1.65;
      color: rgba(255,255,255,0.72);
      margin-bottom: 0.7em;
    }

    .tc-bio p:last-child { margin-bottom: 0; }
    .tc-bio-pending { color: var(--muted2) !important; font-style: italic; }

    @media (hover: hover) {
      .tc-card:hover .tc-bio { transform: translateY(0); }
      .tc-card:focus-visible .tc-bio { transform: translateY(0); }
    }

    .tc-card.open .tc-bio { transform: translateY(0); }
    .tc-card.open .tc-prompt { opacity: 0; }

    @media (prefers-reduced-motion: reduce) {
      .tc-card, .tc-monogram, .tc-prompt, .tc-bio { transition: none !important; }
    }

    /* ============================================
       NEWSLETTER ARCHIVE PAGE
       ============================================ */

    .nl-archive-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      margin-top: 2rem;
    }

    @media (max-width: 640px) { .nl-archive-grid { grid-template-columns: 1fr; } }

    .nl-archive-card {
      position: relative;
      padding: 1.75rem;
      border-radius: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }

    .nl-archive-card:hover {
      background: rgba(255,255,255,0.05);
      border-color: rgba(74,167,160,0.25);
      transform: translateY(-2px);
    }

    .nl-featured {
      grid-column: 1 / -1;
      border-color: rgba(74,167,160,0.2);
      background: linear-gradient(135deg, rgba(74,167,160,0.07) 0%, rgba(255,255,255,0.02) 100%);
    }

    .nl-archive-meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
    .nl-archive-date { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.07em; }
    .nl-archive-issue { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.03em; }

    .nl-archive-title {
      font-family: var(--font-serif);
      font-size: clamp(1rem, 2.4vw, 1.3rem);
      font-weight: 600;
      line-height: 1.3;
      color: var(--fg);
      margin: 0;
    }

    .nl-archive-body { font-size: 0.875rem; line-height: 1.65; color: var(--muted); margin: 0; flex: 1; }
    .nl-archive-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }

    .nl-archive-tag {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 0.25em 0.65em;
      border-radius: 999px;
      background: rgba(74,167,160,0.1);
      color: var(--accent);
      border: 1px solid rgba(74,167,160,0.15);
    }

    .nl-archive-link {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.3em;
      transition: gap 0.2s;
    }

    .nl-archive-link:hover { gap: 0.55em; }

    /* ============================================
       MEMBERS PAGE - Events List
       ============================================ */

    .events-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      overflow: hidden;
    }

    .event-row {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.25rem 1.5rem;
      background: rgba(255,255,255,0.02);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: background 0.18s;
    }

    .event-row:last-child { border-bottom: none; }
    .event-row:hover { background: rgba(255,255,255,0.045); }

    .event-date-badge {
      flex-shrink: 0;
      width: 52px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 1;
    }

    .event-date-badge .month {
      font-size: 0.67rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
      display: block;
      margin-bottom: 0.2em;
    }

    .event-date-badge .day {
      font-size: 1.6rem;
      font-weight: 700;
      font-family: var(--font-serif);
      color: var(--fg);
      display: block;
      line-height: 1;
    }

    .event-row-body { flex: 1; min-width: 0; }
    .event-row-title { font-weight: 600; font-size: 0.97rem; color: var(--fg); margin-bottom: 0.2em; line-height: 1.35; }
    .event-row-meta { font-size: 0.8rem; color: var(--muted); }

    .event-row-type {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      padding: 0.3em 0.8em;
      border-radius: 999px;
      background: rgba(74,167,160,0.1);
      color: var(--accent);
      border: 1px solid rgba(74,167,160,0.15);
      flex-shrink: 0;
      white-space: nowrap;
    }

    @media (max-width: 560px) {
      .event-row { gap: 0.9rem; padding: 1rem; }
      .event-row-type { display: none; }
    }

    /* ============================================
       MEMBERS PAGE - Bulletin Board
       ============================================ */

    .bulletin-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 2rem;
    }

    @media (max-width: 740px) { .bulletin-grid { grid-template-columns: 1fr; } }

    .bulletin-card {
      padding: 2rem 1.75rem;
      border-radius: 16px;
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.07);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }

    .bulletin-card:hover {
      background: rgba(255,255,255,0.04);
      border-color: rgba(74,167,160,0.2);
      transform: translateY(-3px);
    }

    .bulletin-card-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: rgba(74,167,160,0.1);
      border: 1px solid rgba(74,167,160,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      flex-shrink: 0;
    }

    .bulletin-card-icon svg { width: 22px; height: 22px; }
    .bulletin-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--fg); margin: 0; }
    .bulletin-card p { font-size: 0.875rem; line-height: 1.65; color: var(--muted); margin: 0; flex: 1; }

    /* ============================================
       MEMBERS PAGE - Connect Grid
       ============================================ */

    .connect-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 2rem;
    }

    @media (max-width: 740px) { .connect-grid { grid-template-columns: 1fr; } }

    .connect-card {
      padding: 1.75rem;
      border-radius: 14px;
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.06);
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      transition: border-color 0.2s, background 0.2s;
    }

    .connect-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(74,167,160,0.18); }
    .connect-card h4 { font-size: 1rem; font-weight: 600; color: var(--fg); margin: 0; }
    .connect-card p { font-size: 0.875rem; line-height: 1.6; color: var(--muted); margin: 0; flex: 1; }

    /* ============================================
       JOIN PAGE - Form
       ============================================ */

    .join-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      margin-top: 2rem;
    }

    @media (max-width: 780px) { .join-grid { grid-template-columns: 1fr; gap: 2rem; } }

    .join-form-wrap {
      padding: 2rem;
      border-radius: 16px;
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .join-form-wrap h3 {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 600;
      margin: 0 0 1.5rem;
      color: var(--fg);
    }

    .field-grid { display: flex; flex-direction: column; gap: 1.1rem; }
    .field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media (max-width: 480px) { .field-pair { grid-template-columns: 1fr; } }
    .field { display: flex; flex-direction: column; gap: 0.42rem; }
    .field label { font-size: 0.82rem; font-weight: 600; color: var(--fg); letter-spacing: 0.02em; }

    .input-select {
      width: 100%;
      padding: 0.62rem 2rem 0.62rem 0.9rem;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.05);
      color: var(--fg);
      font-size: 0.9rem;
      font-family: var(--font-sans);
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

    .input-select:focus { outline: none; border-color: var(--accent); background-color: rgba(255,255,255,0.07); }
    .input-select option { background: #1a1f2e; color: var(--fg); }
    textarea.input { resize: vertical; min-height: 110px; }
    .form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

    /* ============================================
       JOIN PAGE - Donate Band
       ============================================ */

    .donate-band {
      padding: 5rem 0;
      text-align: center;
      background: linear-gradient(180deg, transparent 0%, rgba(74,167,160,0.06) 50%, transparent 100%);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .donate-band .h2 { margin-top: 0.5rem; }
    .donate-band .lead { max-width: 54ch; margin: 0.75rem auto 0; }

    .donate-amounts {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin: 2rem 0;
    }

    .donate-amount {
      padding: 0.6rem 1.4rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.04);
      color: var(--fg);
      font-size: 0.95rem;
      font-weight: 600;
      font-family: var(--font-sans);
      cursor: pointer;
      transition: all 0.18s ease;
    }

    .donate-amount:hover { border-color: var(--accent); color: var(--accent); background: rgba(74,167,160,0.08); }

    .donate-amount.selected {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      box-shadow: 0 4px 18px rgba(74,167,160,0.35);
    }