/* ============================================================
   TOKENS
============================================================ */
      :root {
        --ink: #0a0a0a;
        --panel: #141414;
        --panel-2: #1d1d1d;
        --line-dark: rgba(255, 255, 255, 0.14);
        --line-dark-soft: rgba(255, 255, 255, 0.07);

        --paper: #f7f5f0;
        --paper-2: #efeade;
        --ink-on-paper: #171512;
        --line-light: rgba(20, 18, 14, 0.13);
        --line-light-soft: rgba(20, 18, 14, 0.08);

        --white: #ffffff;
        --orange: #fd7715;
        --orange-deep: #d9640a;

        --sans: "Manrope", -apple-system, sans-serif;
        --serif: "Newsreader", Georgia, serif;

        --maxw: 1480px;

        /* було clamp(1.25rem, 4vw, 3.5rem) */
        --gutter: clamp(0.8rem, 2.6vw, 2.3rem);

        --radius: 3px;
        --ease: cubic-bezier(0.22, 0.7, 0.28, 1);
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }
        *,
        *::before,
        *::after {
          animation-duration: 0.001ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.001ms !important;
          scroll-behavior: auto !important;
        }
      }
      body {
        margin: 0;
        background: var(--ink);
        color: var(--white);
        font-family: var(--sans);
        font-size: 16px;
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }
      img,
      svg,
      canvas {
        display: block;
        max-width: 100%;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      ul {
        margin: 0;
        padding: 0;
        list-style: none;
      }
      h1,
      h2,
      h3,
      h4,
      p {
        margin: 0;
      }
      button {
        font-family: inherit;
        cursor: pointer;
      }
      ::selection {
        background: var(--orange);
        color: var(--ink);
      }
      :focus-visible {
        outline: 2px solid var(--orange);
        outline-offset: 3px;
      }

      .container {
        max-width: var(--maxw);
        margin-inline: auto;
        padding-inline: var(--gutter);
      }

      .eyebrow {
        font-family: var(--sans);
        font-weight: 700;
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--orange);
        display: flex;
        align-items: center;
        gap: 0.6em;
      }
      .eyebrow::before {
        content: "";
        width: 1.6em;
        height: 1px;
        background: var(--orange);
        display: inline-block;
      }

      h1,
      h2,
      h3 {
        font-family: var(--sans);
        font-weight: 800;
        letter-spacing: -0.01em;
        text-transform: uppercase;
        line-height: 1.02;
      }
      .section-title {
        font-size: clamp(2rem, 4.6vw, 3.4rem);
        margin-top: 0.5rem;
        max-width: 20ch;
      }
      .lede {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        font-size: clamp(1.15rem, 2vw, 1.5rem);
        line-height: 1.5;
        color: inherit;
      }
      .body-text {
        font-family: var(--serif);
        font-size: 1.05rem;
        line-height: 1.75;
      }
      .body-text p + p {
        margin-top: 1.1em;
      }

      .section {
        position: relative;
        padding: clamp(4rem, 9vw, 8rem) 0;
      }
      .section--dark {
        background: var(--ink);
        color: var(--white);
      }
      .section--paper {
        background: var(--paper);
        color: var(--ink-on-paper);
      }
      .section--paper2 {
        background: var(--paper-2);
        color: var(--ink-on-paper);
      }
      .section--paper .eyebrow::before,
      .section--paper2 .eyebrow::before {
        background: var(--orange);
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        font-family: var(--sans);
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 0.95rem 1.7rem;
        border-radius: var(--radius);
        border: 1px solid transparent;
        transition:
          transform 0.35s var(--ease),
          background 0.3s var(--ease),
          color 0.3s var(--ease),
          border-color 0.3s var(--ease);
        white-space: nowrap;
      }
      .btn:hover {
        transform: translateY(-2px);
      }
      .btn--solid {
        background: var(--orange);
        color: var(--ink);
      }
      .btn--solid:hover {
        background: var(--white);
      }
      .btn--ghost-dark {
        border-color: var(--line-dark);
        color: var(--white);
      }
      .btn--ghost-dark:hover {
        border-color: var(--orange);
        color: var(--orange);
      }
      .btn--ghost-light {
        border-color: var(--line-light);
        color: var(--ink-on-paper);
      }
      .btn--ghost-light:hover {
        border-color: var(--orange);
        color: var(--orange-deep);
      }
      .btn svg {
        width: 14px;
        height: 14px;
        transition: transform 0.3s var(--ease);
      }
      .btn:hover svg {
        transform: translateX(3px);
      }

      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.8s var(--ease),
          transform 0.8s var(--ease);
      }
      .reveal.is-visible {
        opacity: 1;
        transform: none;
      }

      /* ============================================================
   NAV
============================================================ */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 1rem 0;
        transition:
          background 0.4s var(--ease),
          padding 0.4s var(--ease),
          border-color 0.4s var(--ease),
          backdrop-filter 0.4s var(--ease);
        border-bottom: 1px solid transparent;
      }
      .nav.is-scrolled {
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(10px);
        border-color: var(--line-dark-soft);
        padding: 0.65rem 0;
      }
      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }
      .brand {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        font-weight: 800;
        font-size: 1.1rem;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        flex: none;
      }
      .brand .mark {
        width: 24px;
        height: 24px;
        position: relative;
        flex: none;
      }
      .brand .mark svg {
        width: 100%;
        height: 100%;
      }
      .brand-logo {
        height: 38px;
        width: auto;
        object-fit: contain;
      }
      .nav-links {
        display: none;
        gap: 1.35rem;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        white-space: nowrap;
      }
      .nav-links a {
        position: relative;
        padding-bottom: 4px;
        opacity: 0.8;
        transition:
          opacity 0.25s var(--ease),
          color 0.25s var(--ease);
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background: var(--orange);
        transition: width 0.3s var(--ease);
      }
      .nav-links a:hover {
        opacity: 1;
        color: var(--orange);
      }
      .nav-links a:hover::after {
        width: 100%;
      }
      .nav-utility {
        display: none;
        align-items: center;
        gap: 1.1rem;
        flex: none;
      }
      .lang-switch {
        display: flex;
        align-items: center;
        gap: 0.1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--line-dark);
        border-radius: 100px;
        padding: 0.25rem;
      }
      .lang-switch button {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.5);
        font-family: var(--sans);
        font-weight: 700;
        font-size: 0.68rem;
        letter-spacing: 0.03em;
        padding: 0.32rem 0.6rem;
        border-radius: 100px;
        transition:
          background 0.25s var(--ease),
          color 0.25s var(--ease);
      }
      .lang-switch button.is-active {
        background: var(--orange);
        color: var(--ink);
      }
      .lang-switch button:not(.is-active):hover {
        color: var(--white);
      }
      .social-row-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      .social-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        flex: none;
        border: 1px solid var(--line-dark);
        color: rgba(255, 255, 255, 0.75);
        display: flex;
        align-items: center;
        justify-content: center;
        transition:
          border-color 0.25s var(--ease),
          color 0.25s var(--ease),
          transform 0.25s var(--ease);
      }
      .social-icon svg {
        width: 14px;
        height: 14px;
      }
      .social-icon:hover {
        border-color: var(--orange);
        color: var(--orange);
        transform: translateY(-2px);
      }
      .nav-toggle {
        background: none;
        border: 1px solid var(--line-dark);
        color: var(--white);
        width: 40px;
        height: 40px;
        border-radius: var(--radius);
        flex: none;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      @media (min-width: 1300px) {
        .nav-links {
          display: flex;
        }
        .nav-utility {
          display: flex;
        }
        .nav-toggle {
          display: none;
        }
      }

      .mobile-drawer {
        position: fixed;
        inset: 0;
        z-index: 99;
        background: var(--ink);
        display: flex;
        flex-direction: column;
        padding: 6.5rem var(--gutter) 3rem;
        overflow-y: auto;
        transform: translateY(-100%);
        transition: transform 0.5s var(--ease);
      }
      .mobile-drawer.is-open {
        transform: translateY(0);
      }
      .mobile-drawer ul {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
      }
      .mobile-drawer a {
        font-size: 1.5rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.01em;
      }
      .mobile-drawer-utility {
        margin-top: 2.4rem;
        padding-top: 2rem;
        border-top: 1px solid var(--line-dark-soft);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
      }
      .mobile-drawer .btn {
        margin-top: 2.2rem;
        align-self: flex-start;
      }

      /* ============================================================
   HERO
============================================================ */
      .hero {
        position: relative;
        padding-top: 8rem;
        padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
        overflow: hidden;
        background:
          radial-gradient(
            ellipse 70% 60% at 88% 0%,
            rgba(253, 119, 21, 0.14),
            transparent 60%
          ),
          radial-gradient(
            ellipse 55% 45% at 4% 100%,
            rgba(253, 119, 21, 0.07),
            transparent 60%
          ),
          var(--ink);
      }
      .hero2-grid {
        display: grid;
        gap: 2.6rem;
        grid-template-columns: 1fr;
      }
      @media (min-width: 960px) {
        .hero2-grid {
          grid-template-columns: 1.3fr 0.95fr;
          gap: 3rem;
          align-items: stretch;
        }
      }
      .hero2-left {
        position: relative;
        padding-top: 0.4rem;
      }
      .hero2-mapline {
        position: absolute;
        top: -6%;
        right: -10%;
        width: 64%;
        max-width: 460px;
        height: auto;
        opacity: 0.14;
        z-index: 0;
        pointer-events: none;
        object-fit: contain;
      }
      @media (min-width: 640px) {
        .hero2-mapline {
          opacity: 0.2;
          right: -2%;
        }
      }
      .hero2-title {
        position: relative;
        z-index: 1;
        font-size: clamp(2.9rem, 8.6vw, 6.2rem);
        line-height: 0.94;
        margin: 1rem 0 1rem;
      }
      .hero2-title img {
        display: block;
        height: auto;
        max-width: min(100%, 570px);
        width: 100%;
      }
      .hero2-title span {
        color: var(--orange);
      }
      body:not(:has(.hero)) .nav {
        background: rgba(10, 10, 10, 0.96);
        border-bottom-color: var(--line-dark-soft);
      }
      body:not(:has(.hero)) .nav-links a,
      body:not(:has(.hero)) .brand {
        color: var(--white);
      }
      body:not(:has(.hero)) .nav-toggle path {
        stroke: var(--white);
      }
      .hero2-tagline {
        position: relative;
        z-index: 1;
        max-width: 38ch;
        margin-bottom: 1.8rem;
      }
      .hero2-divider {
        position: relative;
        z-index: 1;
        height: 1px;
        background: var(--line-dark);
        max-width: 520px;
        margin-bottom: 1.8rem;
      }
      .hero2-ctas {
        position: relative;
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
      }
      .hero2-card {
        background: var(--white);
        color: var(--ink-on-paper);
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid var(--line-light);
        display: flex;
        flex-direction: column;
        box-shadow: 0 40px 70px -35px rgba(0, 0, 0, 0.55);
      }
      .hero2-card-visual {
        position: relative;
        display: block;
        aspect-ratio: 16/10;
        background: linear-gradient(180deg, #121212, #000);
        overflow: hidden;
        flex: none;
      }
      .hero2-card-visual svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
      }
      .hero2-card-visual-label {
        position: absolute;
        left: 1.3rem;
        bottom: 1.1rem;
        z-index: 2;
        font-family: var(--sans);
        font-weight: 800;
        font-size: 1.35rem;
        line-height: 1.05;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: -0.01em;
        text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
      }
      .hero2-card-tag {
        position: absolute;
        top: 1rem;
        left: 1.3rem;
        z-index: 2;
        font-size: 0.62rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: var(--orange);
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0.3rem 0.6rem;
        border-radius: 100px;
      }
      .hero2-card-body {
        padding: 1.6rem 1.6rem 1.7rem;
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        flex: 1;
      }
      .hero2-card-title {
        font-family: var(--sans);
        font-weight: 800;
        font-size: 1.2rem;
        color: var(--orange-deep);
        text-decoration: underline;
        text-decoration-color: var(--orange);
        text-underline-offset: 4px;
        width: fit-content;
        transition: color 0.25s var(--ease);
      }
      .hero2-card-title:hover {
        color: var(--orange);
      }
      .hero2-card-lede {
        font-size: 0.98rem;
      }
      .hero2-card-text {
        font-family: var(--serif);
        font-size: 0.9rem;
        line-height: 1.62;
        opacity: 0.82;
      }
      .hero2-stats {
        border: 1px solid var(--line-light);
        border-radius: var(--radius);
        overflow: hidden;
        margin-top: 0.15rem;
      }
      .hero2-stat {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
        padding: 0.7rem 0.9rem;
        background: var(--paper);
        border-top: 1px solid var(--line-light);
      }
      .hero2-stat:first-child {
        border-top: none;
      }
      .hero2-stat .k {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 700;
        opacity: 0.55;
        flex: none;
      }
      .hero2-stat .v {
        font-size: 0.8rem;
        font-weight: 700;
        text-align: right;
      }
      .hero2-card-cta {
        margin-top: 0.3rem;
        align-self: flex-start;
      }

      /* ============================================================
   PARTNERS (id=join) — steps + tiered pricing, Individual/Corporate
============================================================ */
      .join-block {
        background: var(--ink);
        color: var(--white);
        border-radius: 20px;
        padding: clamp(1.8rem, 4vw, 3.2rem);
      }
      .join-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 1.5rem;
        flex-wrap: wrap;
        padding-bottom: 1.4rem;
        border-bottom: 1px solid var(--line-dark-soft);
        margin-bottom: 2.4rem;
      }
      .join-head h3 {
        font-size: clamp(1.6rem, 3.4vw, 2.1rem);
        margin: 0;
      }
      .tabs {
        display: flex;
        gap: 1.8rem;
      }
      .tab-btn {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.45);
        font-family: var(--sans);
        font-weight: 700;
        font-size: 0.85rem;
        padding: 0 0 1.4rem;
        cursor: pointer;
        position: relative;
        top: 1.4rem;
        transition: color 0.2s;
      }
      .tab-btn.active {
        color: #fff;
      }
      .tab-btn.active::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--orange);
      }
      .tab-panel {
        display: none;
      }
      .tab-panel.active {
        display: block;
      }
      .sub-eyebrow {
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--orange);
        margin-bottom: 1.2rem;
      }
      .steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.6rem;
        margin-bottom: 2.6rem;
      }
      @media (min-width: 760px) {
        .steps {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      @media (min-width: 1080px) {
        .steps {
          grid-template-columns: repeat(5, 1fr);
        }
      }
      .step-n {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 0.6rem;
      }
      .step-t {
        font-family: var(--serif);
        font-size: 0.95rem;
        line-height: 1.5;
      }
      .step-t b {
        color: var(--orange);
        font-weight: 600;
      }
      .join-divider {
        border: none;
        border-top: 1px solid var(--line-dark-soft);
        margin: 0 0 2.4rem;
      }
      .tier-scroll {
        display: flex;
        gap: 1.1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.8rem;
        scrollbar-width: none;
      }
      .tier-scroll::-webkit-scrollbar {
        display: none;
      }
      .tier-grid3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.1rem;
      }
      @media (min-width: 860px) {
        .tier-grid3 {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      .tier-card {
        flex: 0 0 270px;
        scroll-snap-align: start;
        background: var(--panel-2);
        border: 1px solid var(--line-dark);
        border-radius: 12px;
        padding: 1.4rem;
        display: flex;
        flex-direction: column;
      }
      .tier-grid3 .tier-card {
        flex: none;
      }
      .tier-card.gold {
        background: var(--orange);
        color: var(--ink);
        border-color: var(--orange);
      }
      .t-badge {
        display: inline-block;
        font-size: 0.68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        opacity: 0.55;
        margin-bottom: 0.4rem;
      }
      .t-name {
        font-weight: 800;
        font-size: 0.92rem;
        text-transform: uppercase;
        letter-spacing: 0.03em;
      }
      .t-price {
        font-weight: 800;
        font-size: 1.4rem;
        margin: 0.5rem 0 0.3rem;
        letter-spacing: -0.01em;
      }
      .t-price small {
        font-size: 0.72rem;
        font-weight: 600;
        opacity: 0.6;
      }
      .t-meta {
        font-size: 0.7rem;
        opacity: 0.55;
        margin-bottom: 1rem;
        line-height: 1.5;
      }
      .t-list {
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
        margin: 0 0 1.1rem;
        padding: 0;
        list-style: none;
        flex: 1;
      }
      .t-list li {
        font-family: var(--serif);
        font-size: 0.82rem;
        line-height: 1.45;
        display: flex;
        gap: 0.5rem;
      }
      .t-list li::before {
        content: "\2014";
        color: var(--orange);
        font-family: var(--sans);
        font-weight: 700;
        flex: none;
      }
      .tier-card.gold .t-list li::before {
        color: var(--ink);
      }
      .t-cta {
        align-self: flex-start;
        font-size: 0.78rem;
        font-weight: 700;
        padding: 0.6rem 1rem;
        border-radius: 100px;
        background: var(--orange);
        color: var(--ink);
      }
      .tier-card.gold .t-cta {
        background: var(--ink);
        color: #fff;
      }
      .join-note {
        font-family: var(--serif);
        font-size: 0.82rem;
        opacity: 0.5;
        margin-top: 1.8rem;
        max-width: 70ch;
      }
      .join-page {
        min-height: 100vh;
        padding-top: 8rem;
      }
      .join-page-heading {
        margin-bottom: 2.4rem;
      }
      .join-process {
        background: var(--ink);
        border-radius: 8px;
        color: var(--white);
        padding: clamp(1.2rem, 3vw, 2.1rem);
      }
      .join-process-top {
        align-items: end;
        border-bottom: 1px solid var(--line-dark-soft);
        display: flex;
        gap: 2rem;
        justify-content: space-between;
      }
      .join-process-top h2 {
        font-size: clamp(2.8rem, 6vw, 5.8rem);
        line-height: 0.94;
        text-transform: none;
      }
      .join-process-top h2 span {
        color: var(--white);
        font-weight: 400;
      }
      .join-process-tabs {
        gap: clamp(1rem, 3vw, 2.5rem);
        max-width: 58%;
        overflow-x: auto;
        scrollbar-width: none;
      }
      .join-process-tabs::-webkit-scrollbar {
        display: none;
      }
      .join-process .tab-btn {
        color: rgba(255, 255, 255, 0.52);
        font-size: 0.72rem;
        padding-bottom: 1rem;
        top: 1px;
        white-space: nowrap;
      }
      .join-process .tab-btn.active,
      .join-process .tab-btn:hover {
        color: var(--white);
      }
      .join-process .tab-btn.active::after {
        height: 3px;
      }
      .join-process-steps {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        padding: clamp(2rem, 5vw, 4.2rem) 0;
      }
      .join-process-steps > div {
        min-width: 0;
      }
      .join-process-steps span {
        color: rgba(255, 255, 255, 0.58);
        display: block;
        font-size: 0.72rem;
        margin-bottom: 0.8rem;
      }
      .join-process-steps p {
        color: rgba(255, 255, 255, 0.8);
        font-family: var(--serif);
        font-size: 0.86rem;
        line-height: 1.45;
        max-width: 18ch;
      }
      .join-process-steps b {
        color: var(--orange);
        font-family: var(--sans);
        font-size: 0.78rem;
      }
      .join-process-cta {
        align-items: center;
        background: var(--orange);
        border-radius: 100px;
        color: var(--ink);
        display: flex;
        font-size: 0.9rem;
        font-weight: 800;
        justify-content: space-between;
        padding: 0.9rem 1.25rem;
        transition: background 0.25s var(--ease), transform 0.25s var(--ease);
      }
      .join-process-cta:hover {
        background: var(--white);
        transform: translateY(-2px);
      }
      .join-home-panel {
        align-items: end;
        background: var(--ink);
        border-radius: 8px;
        color: var(--white);
        display: flex;
        gap: 2rem;
        justify-content: space-between;
        overflow: hidden;
        padding: clamp(1.5rem, 4vw, 3rem);
        position: relative;
      }
      .join-home-panel::after {
        border: 1px solid rgba(253, 119, 21, 0.45);
        border-radius: 50%;
        content: "";
        height: 220px;
        position: absolute;
        right: -70px;
        top: -100px;
        width: 220px;
      }
      .join-home-panel .section-title {
        margin-bottom: 1rem;
        max-width: 12ch;
        text-transform: none;
      }
      .join-home-panel .section-title span {
        color: var(--orange);
      }
      .join-home-panel p {
        color: rgba(255, 255, 255, 0.68);
        font-family: var(--serif);
        max-width: 42ch;
      }
      .join-home-panel .btn {
        position: relative;
        z-index: 1;
      }
      .join-home-process {
        background: var(--ink);
        border-radius: 8px;
        color: var(--white);
        overflow: hidden;
        padding: clamp(1.2rem, 3vw, 2.1rem);
        position: relative;
      }
      .join-home-process::after {
        border: 1px solid rgba(253, 119, 21, 0.5);
        border-radius: 50%;
        content: "";
        height: 220px;
        position: absolute;
        right: -70px;
        top: -100px;
        width: 220px;
      }
      .join-home-process-top {
        align-items: end;
        border-bottom: 1px solid var(--line-dark-soft);
        display: flex;
        justify-content: space-between;
        position: relative;
        z-index: 1;
      }
      .join-home-process-top h2 {
        font-size: clamp(3rem, 7vw, 6rem);
        line-height: 0.94;
        text-transform: none;
      }
      .join-home-process-top h2 span {
        color: var(--orange);
        font-weight: 400;
      }
      .join-home-division {
        border-bottom: 3px solid var(--orange);
        font-size: 0.72rem;
        font-weight: 700;
        margin-bottom: -1px;
        padding: 0 0 1rem;
        text-transform: uppercase;
      }
      .join-home-process .join-process-steps,
      .join-home-process .join-process-cta {
        position: relative;
        z-index: 1;
      }
      .join-home-process .join-process-steps {
        padding-bottom: 2.8rem;
      }
      .join-home-process .join-process-cta {
        margin-top: 0;
      }

      /* ============================================================
   OUR PROJECTS (id=events) — Current / Past / Calendar
============================================================ */
      .proj-scroll {
        display: flex;
        gap: 1.2rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.8rem;
        scrollbar-width: none;
        margin-top: 2.4rem;
      }
      .project-rail { position: relative; }
      .project-nav {
        align-items: center;
        background: var(--ink);
        border: 0;
        border-radius: 50%;
        color: var(--white);
        display: flex;
        height: 42px;
        justify-content: center;
        opacity: 0;
        position: absolute;
        top: 47%;
        transform: translateY(-50%);
        transition: opacity 0.25s var(--ease), background 0.25s var(--ease);
        width: 42px;
        z-index: 2;
      }
      .project-rail:hover .project-nav,
      .project-nav:focus-visible { opacity: 1; }
      .project-nav:hover { background: var(--orange); color: var(--ink); }
      .project-nav--prev { left: -21px; }
      .project-nav--next { right: -21px; }
      .project-dots { display: flex; gap: 0.45rem; justify-content: center; margin-top: 0.75rem; min-height: 10px; }
      .project-dot { background: rgba(23, 21, 18, 0.22); border: 0; border-radius: 50%; height: 9px; padding: 0; width: 9px; }
      .project-dot.active { background: var(--orange); transform: scale(1.3); }
      .proj-scroll::-webkit-scrollbar {
        display: none;
      }
      .proj-card {
        flex: 0 0 calc((100% - 2.4rem) / 3);
        scroll-snap-align: start;
        background: var(--white);
        border: 1px solid var(--line-light);
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }
      .proj-media {
        height: 170px;
        background: linear-gradient(135deg, #1c1a17, #2b2b2b);
        position: relative;
      }
      .proj-media.alt {
        background: linear-gradient(135deg, #2b2b2b, #141210);
      }
      .proj-media .glow {
        position: absolute;
        inset: 0;
        background: radial-gradient(
          circle at 30% 25%,
          rgba(253, 119, 21, 0.4),
          transparent 55%
        );
      }
      .proj-card--placeholder {
        border-style: dashed;
      }
      .proj-card--placeholder .proj-media {
        align-items: center;
        display: flex;
        justify-content: center;
      }
      .proj-placeholder-mark {
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        color: var(--orange);
        display: flex;
        font-size: 2rem;
        height: 56px;
        justify-content: center;
        width: 56px;
      }
      .proj-body {
        padding: 1.3rem 1.4rem 1.5rem;
        display: flex;
        flex-direction: column;
        flex: 1;
      }
      .proj-title {
        font-weight: 700;
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
      }
      .proj-desc {
        font-family: var(--serif);
        font-size: 0.92rem;
        line-height: 1.55;
        opacity: 0.82;
        margin-bottom: 1.1rem;
        flex: 1;
      }
      .proj-btns {
        display: flex;
        gap: 0.6rem;
        flex-wrap: wrap;
      }
      .btn-sm {
        font-size: 0.78rem;
        font-weight: 700;
        padding: 0.6rem 1rem;
        border-radius: 100px;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        transition: opacity 0.2s;
      }
      .btn-sm.dark {
        background: var(--ink);
        color: #fff;
      }
      .btn-sm.outline {
        background: #fff;
        border: 1px solid var(--line-light);
        color: var(--ink-on-paper);
      }
      .btn-sm:hover {
        opacity: 0.8;
      }
      .btn-sm span {
        font-size: 0.85em;
      }
      .proj-meta {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        opacity: 0.5;
        margin-bottom: 0.4rem;
      }
      .partners-line {
        font-size: 0.78rem;
        opacity: 0.65;
        margin-bottom: 0.8rem;
      }
      .partners-line b {
        color: var(--orange-deep);
        font-weight: 700;
      }
      .gallery-row {
        display: flex;
        gap: 0.4rem;
        margin-bottom: 1rem;
      }
      .gallery-tile {
        width: 44px;
        height: 44px;
        border-radius: 6px;
        background: linear-gradient(135deg, #e9e4d8, #d9d2c0);
        flex: none;
      }
      .details-link {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--orange-deep);
      }
      .cal-list {
        display: flex;
        flex-direction: column;
        border-top: 1px solid var(--line-light);
        margin-top: 2.4rem;
      }
      .calendar-intro { align-items: end; display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.4rem; }
      .calendar-intro .faq-group-title { margin-bottom: 0.35rem; }
      .calendar-intro p { font-family: var(--serif); opacity: 0.68; max-width: 48ch; }
      .calendar-count { border: 1px solid var(--line-light); border-radius: 100px; color: var(--orange-deep); font-size: 0.7rem; font-weight: 800; padding: 0.45rem 0.75rem; white-space: nowrap; }
      .cal-row {
        display: grid;
        grid-template-columns: 140px 1fr auto;
        gap: 1rem;
        align-items: center;
        padding: 1.1rem 0;
        border-bottom: 1px solid var(--line-light);
      }
      .cal-row.tba {
        opacity: 0.55;
      }
      .cal-date {
        font-weight: 800;
        font-size: 0.95rem;
        color: var(--orange-deep);
      }
      .cal-title {
        font-weight: 700;
        font-size: 0.95rem;
      }
      .cal-loc {
        font-size: 0.8rem;
        opacity: 0.6;
        margin-top: 0.15rem;
      }
      .cal-tag {
        font-size: 0.68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border: 1px solid var(--line-light);
        border-radius: 100px;
        padding: 0.3rem 0.7rem;
        white-space: nowrap;
      }
      .events-tabs-row {
        margin-top: 2.4rem;
      }
      .events-tabs-row > .tabs {
        align-items: flex-end;
        border-bottom: 1px solid var(--line-light);
        gap: 2rem;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
      }
      .events-tabs-row > .tabs::-webkit-scrollbar {
        display: none;
      }
      .events-tabs-row .tab-btn {
        color: rgba(23, 21, 18, 0.62);
        padding: 0.75rem 0 0.9rem;
        top: 1px;
        white-space: nowrap;
      }
      .events-tabs-row .tab-btn:hover,
      .events-tabs-row .tab-btn.active {
        color: var(--ink-on-paper);
      }
      .events-tabs-row .tab-btn.active::after {
        bottom: -1px;
        height: 3px;
      }

      /* ============================================================
   ACHIEVEMENTS (id=achievements)
============================================================ */
      .ach-wrap {
        background: linear-gradient(135deg, #fdece0 0%, #f7f5f0 62%, #eee9ff 100%);
        border-radius: 4px;
        padding: clamp(1rem, 2vw, 1.5rem);
        margin-top: 2.4rem;
      }
      .ach-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        background: var(--line-light);
        border: 1px solid var(--line-light);
        border-radius: 14px;
        overflow: hidden;
      }
      .ach-cell {
        background: rgba(255, 255, 255, 0.34);
        padding: clamp(1.1rem, 2.5vw, 1.8rem) clamp(1rem, 2.2vw, 1.6rem);
        min-height: 210px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .ach-num {
        font-weight: 800;
        font-size: clamp(2.2rem, 5vw, 2.8rem);
        letter-spacing: -0.02em;
        line-height: 1;
        color: var(--ink);
      }
      .ach-num.pending {
        font-size: 1.3rem;
        color: var(--orange-deep);
        opacity: 0.8;
      }
      .ach-label {
        font-weight: 700;
        font-size: 1rem;
        margin-top: 0.6rem;
      }
      .ach-note {
        font-size: 0.78rem;
        opacity: 0.55;
        margin-top: 0.8rem;
        line-height: 1.4;
      }
      .ach-cell:nth-child(2) {
        background: rgba(255, 255, 255, 0.2);
      }
      .ach-cell:nth-child(3) {
        background: rgba(253, 119, 21, 0.14);
      }
      .ach-cell:nth-child(4) {
        background: rgba(255, 255, 255, 0.48);
      }
      .ach-cell.cta {
        background: var(--ink);
        color: #fff;
        justify-content: space-between;
      }
      .ach-cta-plus {
        font-size: 2rem;
        font-weight: 300;
        line-height: 1;
        color: var(--orange);
      }
      .ach-cta-text {
        font-weight: 700;
        font-size: 1.05rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
      }

      /* ============================================================
   MEDIA ABOUT US (id=media)
============================================================ */
      .media-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.5rem;
      }
      .media-layout {
        align-items: start;
        display: grid;
        gap: clamp(2rem, 7vw, 7rem);
        grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
      }
      .media-tile {
        aspect-ratio: 1.45;
        background: rgba(255, 255, 255, 0.3);
        border: 1px solid var(--line-light);
        border-radius: 5px;
        color: var(--ink-on-paper);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-weight: 700;
        min-width: 0;
        padding: 0.65rem;
        text-align: left;
        transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
      }
      .media-tile:hover {
        background: #fff;
        border-color: var(--orange);
        transform: translateY(-2px);
      }
      .media-logo {
        align-items: center;
        display: flex;
        height: 62%;
        justify-content: center;
        width: 100%;
      }
      .media-logo img {
        max-height: 55px;
        max-width: 90%;
        object-fit: contain;
      }
      .media-wordmark {
        font-size: clamp(0.65rem, 1.2vw, 0.9rem);
        line-height: 1.1;
        text-align: center;
      }
      .media-tile-meta {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
        width: 100%;
      }
      .media-tile-meta span {
        font-size: 0.68rem;
        line-height: 1.15;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      .media-tile-meta small {
        font-size: 0.6rem;
        font-weight: 500;
        opacity: 0.55;
      }
      .media-tile--placeholder {
        border-style: dashed;
      }
      .media-placeholder-mark {
        align-items: center;
        border: 1px solid rgba(23, 21, 18, 0.35);
        border-radius: 50%;
        color: var(--orange-deep);
        display: flex;
        font-size: 1.4rem;
        font-weight: 400;
        height: 34px;
        justify-content: center;
        width: 34px;
      }
      .media-tile.empty {
        border-style: dashed;
        color: var(--line-light);
        font-weight: 500;
        font-size: 0.8rem;
        opacity: 0.6;
      }
      .media-note {
        font-family: var(--serif);
        font-size: 0.9rem;
        opacity: 0.6;
        margin-top: 1.2rem;
        max-width: 60ch;
      }
      @media (max-width: 760px) {
        .media-layout {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .media-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      /* ============================================================
   ABOUT US + TEAM (id=about)
============================================================ */
      .about-hr {
        border: none;
        border-top: 1px solid var(--line-light);
        margin: 2.4rem 0;
      }
      .about-cols {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.4rem;
      }
      @media (min-width: 900px) {
        .about-cols {
          grid-template-columns: 0.65fr 1.35fr;
          gap: 3.5rem;
        }
      }
      .fact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
        align-content: start;
      }
      .fact-k {
        font-size: 0.8rem;
        opacity: 0.55;
        margin-bottom: 0.4rem;
      }
      .fact-v {
        font-family: var(--serif);
        font-weight: 600;
        font-size: 1.5rem;
      }
      .about-body p {
        font-family: var(--serif);
        font-size: 1rem;
        line-height: 1.75;
        margin: 0 0 1.2rem;
      }
      .about-body h4 {
        font-family: var(--sans);
        font-weight: 800;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--orange-deep);
        margin: 1.6rem 0 0.6rem;
      }
      .about-body h4:first-child {
        margin-top: 0;
      }
      .team-head {
        margin-top: 4.5rem;
        margin-bottom: 0.5rem;
      }
      .team-lede {
        color: rgba(23, 21, 18, 0.66);
        font-family: var(--serif);
        font-size: 1.05rem;
        margin-top: 1rem;
        max-width: 44ch;
      }
      .team-core {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin: 2rem 0 3rem;
      }
      @media (min-width: 640px) {
        .team-core {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (min-width: 1060px) {
        .team-core {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      .member-card {
        background: #fff;
        border: 1px solid var(--line-light);
        border-radius: 12px;
        padding: 1.6rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        transition:
          transform 0.25s,
          border-color 0.25s;
      }
      .member-card:hover {
        transform: translateY(-4px);
        border-color: var(--orange);
      }
      .member-card--placeholder {
        border-style: dashed;
      }
      .team-placeholder-photo {
        align-items: center;
        aspect-ratio: 1.15;
        background: linear-gradient(135deg, #eee7da, #f8f6f1);
        border: 1px dashed rgba(23, 21, 18, 0.28);
        color: var(--orange-deep);
        display: flex;
        font-size: 2rem;
        justify-content: center;
      }
      .team-placeholder-photo span {
        align-items: center;
        border: 1px solid currentColor;
        border-radius: 50%;
        display: flex;
        height: 44px;
        justify-content: center;
        width: 44px;
      }
      .avatar {
        width: 100%;
        height: auto;
        aspect-ratio: 1.15;
        border-radius: 4px;
        object-fit: cover;
        flex: none;
        background: #eee7da;
        border: 1px solid var(--line-light);
      }
      .member-card h4 {
        font-size: 1.05rem;
        font-weight: 700;
        margin: 0;
        text-transform: none;
        letter-spacing: 0;
      }
      .member-card .role {
        color: var(--orange-deep);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 700;
        margin-top: 0.2rem;
      }
      .member-card p {
        font-family: var(--serif);
        font-size: 0.92rem;
        line-height: 1.55;
        opacity: 0.8;
        margin: 0;
      }
      .ext-head {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 1.2rem;
        flex-wrap: wrap;
        gap: 0.6rem;
      }
      .ext-head h3 {
        text-transform: none;
        font-size: 1.3rem;
        letter-spacing: 0;
        font-weight: 700;
      }
      .ext-head span {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        opacity: 0.5;
        border: 1px solid var(--line-light);
        border-radius: 100px;
        padding: 0.3rem 0.8rem;
      }
      .team-ext {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--line-light);
        border: 1px solid var(--line-light);
        border-radius: 12px;
        overflow: hidden;
      }
      @media (min-width: 760px) {
        .team-ext {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      .ext-item {
        background: #fff;
        padding: 1.3rem 1.5rem;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
      }
      .ext-mono {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        flex: none;
        border: 1px solid var(--line-light);
        background: #eee7da;
      }
      .ext-item h5 {
        font-size: 0.95rem;
        font-weight: 700;
        margin: 0 0 0.15rem;
      }
      .ext-item .role {
        font-size: 0.7rem;
        color: #8a8478;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        display: block;
        margin-bottom: 0.4rem;
      }
      .ext-item p {
        font-family: var(--serif);
        font-size: 0.85rem;
        opacity: 0.78;
        line-height: 1.5;
        margin: 0;
      }

      /* ============================================================
   FAQ
============================================================ */
      .faq-groups {
        margin-top: 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.6rem;
      }
      .faq-feature-grid {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .faq-feature-group {
        background: rgba(255, 255, 255, 0.42);
        border: 1px solid var(--line-light);
        border-radius: 5px;
        padding: 1.25rem 1.4rem;
      }
      .faq-feature-group .faq-group-title {
        margin-bottom: 0.2rem;
      }
      .faq-group-title {
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--orange-deep);
        margin-bottom: 1rem;
      }
      details.faq-item {
        border-bottom: 1px solid var(--line-light);
        padding: 1.2rem 0;
      }
      details.faq-item summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-weight: 700;
        font-size: 1.02rem;
      }
      details.faq-item summary::-webkit-details-marker {
        display: none;
      }
      .faq-plus {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 1px solid var(--line-light);
        flex: none;
        position: relative;
        transition:
          transform 0.3s var(--ease),
          border-color 0.3s var(--ease),
          background 0.3s var(--ease);
      }
      .faq-plus::before,
      .faq-plus::after {
        content: "";
        position: absolute;
        background: var(--ink-on-paper);
        transition:
          transform 0.3s var(--ease),
          background 0.3s var(--ease);
      }
      .faq-plus::before {
        width: 10px;
        height: 1.4px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }
      .faq-plus::after {
        width: 1.4px;
        height: 10px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }
      details.faq-item[open] .faq-plus {
        background: var(--orange);
        border-color: var(--orange);
      }
      details.faq-item[open] .faq-plus::before,
      details.faq-item[open] .faq-plus::after {
        background: var(--ink);
      }
      details.faq-item[open] .faq-plus::after {
        transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
      }
      .faq-answer {
        font-family: var(--serif);
        font-size: 0.98rem;
        line-height: 1.7;
        opacity: 0.82;
        padding-top: 0.9rem;
        max-width: 68ch;
      }
      @media (max-width: 760px) {
        .faq-feature-grid {
          grid-template-columns: 1fr;
        }
      }

      /* ============================================================
   CONTACT
============================================================ */
      .contact-grid {
        display: grid;
        gap: 2.5rem;
        margin-top: 2.6rem;
        grid-template-columns: 1fr;
      }
      @media (min-width: 900px) {
        .contact-grid {
          grid-template-columns: 1.1fr 0.9fr;
          gap: 5rem;
        }
      }
      .contact-list {
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
      }
      .contact-row {
        display: flex;
        gap: 1.2rem;
        align-items: flex-start;
        border-top: 1px solid var(--line-dark-soft);
        padding-top: 1.4rem;
      }
      .contact-row .k {
        width: 110px;
        flex: none;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        opacity: 0.5;
        padding-top: 0.15rem;
      }
      .contact-row .v {
        font-family: var(--serif);
        font-size: 1.1rem;
      }
      .contact-row a.v:hover {
        color: var(--orange);
      }
      .fivex-box {
        border: 1px solid var(--line-dark);
        border-radius: var(--radius);
        padding: 2rem;
        background: rgba(253, 119, 21, 0.05);
      }
      .fivex-box .eyebrow {
        margin-bottom: 1rem;
      }
      .fivex-box p {
        font-family: var(--serif);
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1.2rem;
      }
      .cf-code {
        font-family: var(--sans);
        font-weight: 800;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        color: var(--orange);
        border: 1px dashed var(--line-dark);
        padding: 0.8rem 1rem;
        border-radius: var(--radius);
        display: inline-block;
      }
      .social-row {
        display: flex;
        gap: 0.8rem;
        margin-top: 2rem;
        flex-wrap: wrap;
      }
      .social-pill {
        border: 1px solid var(--line-dark);
        border-radius: 100px;
        padding: 0.6rem 1.1rem;
        font-size: 0.78rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition:
          border-color 0.3s var(--ease),
          color 0.3s var(--ease);
      }
      .social-pill:hover {
        border-color: var(--orange);
        color: var(--orange);
      }

      /* ============================================================
   NEWSLETTER
============================================================ */
      .newsletter {
        background: var(--orange);
        color: var(--ink);
      }
      .nl-eyebrow {
        font-weight: 800;
        font-size: 0.85rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 0.6rem;
      }
      .nl-title {
        font-family: var(--sans);
        font-weight: 800;
        text-transform: uppercase;
        font-size: clamp(1.9rem, 5vw, 3.2rem);
        line-height: 1.08;
        max-width: 22ch;
        margin-bottom: 2.4rem;
      }
      .nl-form {
        max-width: 640px;
      }
      .nl-row {
        display: flex;
        align-items: flex-end;
        gap: 1rem;
        border-bottom: 1px solid rgba(20, 18, 14, 0.4);
        padding-bottom: 0.9rem;
        margin-bottom: 1.4rem;
      }
      .nl-input {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        font-family: var(--serif);
        font-size: 1.2rem;
        color: var(--ink);
        padding: 0.3rem 0;
      }
      .nl-input::placeholder {
        color: rgba(20, 18, 14, 0.5);
      }
      .nl-submit {
        background: var(--ink);
        color: #fff;
        border: none;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        flex: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.25s var(--ease);
      }
      .nl-submit:hover {
        transform: translateX(3px);
      }
      .nl-submit svg {
        width: 15px;
        height: 15px;
      }
      .nl-check {
        display: flex;
        align-items: flex-start;
        gap: 0.7rem;
        font-size: 0.88rem;
      }
      .nl-check input {
        width: 18px;
        height: 18px;
        margin-top: 0.15rem;
        accent-color: var(--ink);
        flex: none;
      }
      .nl-check a {
        text-decoration: underline;
      }
      .nl-msg {
        margin-top: 1rem;
        font-weight: 700;
        font-size: 0.9rem;
        display: none;
      }
      .nl-msg.is-shown {
        display: block;
      }

      /* ============================================================
   FOOTER
============================================================ */
      .footer {
        background: var(--panel);
        border-top: 1px solid var(--line-dark-soft);
        padding: 3.5rem 0 2rem;
      }
      .footer-top {
        display: grid;
        gap: 2.5rem;
        margin-bottom: 3rem;
        grid-template-columns: 1fr;
      }
      @media (min-width: 760px) {
        .footer-top {
          grid-template-columns: 1.2fr repeat(3, 1fr);
        }
      }
      .footer-brand .brand {
        margin-bottom: 1rem;
      }
      .footer-brand p {
        font-family: var(--serif);
        font-size: 0.95rem;
        opacity: 0.65;
        max-width: 34ch;
        line-height: 1.6;
      }
      .footer-col h5 {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.5;
        margin-bottom: 1.1rem;
        font-weight: 700;
      }
      .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
      }
      .footer-col a {
        font-size: 0.9rem;
        opacity: 0.82;
        transition:
          opacity 0.25s var(--ease),
          color 0.25s var(--ease);
      }
      .footer-col a:hover {
        opacity: 1;
        color: var(--orange);
      }
      .footer-bottom {
        border-top: 1px solid var(--line-dark-soft);
        padding-top: 1.8rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
        font-size: 0.78rem;
        opacity: 0.5;
      }
      .partner-grid,
      .project-listing-grid {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 2.4rem 0;
      }
      .list-partnership {
        overflow: hidden;
      }
      .partner-showcase {
        margin: 2.4rem calc(var(--gutter) * -1) 0;
        padding: 0 var(--gutter);
      }
      .partner-viewport {
        position: relative;
      }
      .partner-track {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding: 0.25rem 0 1rem;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }
      .partner-track::-webkit-scrollbar {
        display: none;
      }
      .partner-card {
        background: rgba(255, 255, 255, 0.74);
        border: 1px solid var(--line-light);
        border-radius: 3px;
        flex: 0 0 clamp(180px, 22vw, 250px);
        min-height: 132px;
        padding: 1.5rem;
        scroll-snap-align: start;
        transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
      }
      .partner-card:hover {
        background: #fff;
        border-color: var(--orange);
        transform: translateY(-3px);
      }
      .partner-card img {
        max-height: 65px;
        object-fit: contain;
      }
      .partner-card span {
        font-weight: 800;
        text-align: center;
      }
      .partner-card--placeholder {
        align-items: center;
        color: var(--ink-on-paper);
        flex-direction: column;
        gap: 0.8rem;
        justify-content: center;
      }
      .partner-placeholder-mark {
        align-items: center;
        background: var(--ink);
        border-radius: 50%;
        color: var(--orange);
        display: flex;
        font-size: 1.5rem;
        font-weight: 800;
        height: 48px;
        justify-content: center;
        width: 48px;
      }
      .partner-nav {
        align-items: center;
        background: var(--ink);
        border: 0;
        border-radius: 50%;
        color: var(--white);
        display: flex;
        font-size: 1.25rem;
        height: 42px;
        justify-content: center;
        opacity: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: opacity 0.25s var(--ease), background 0.25s var(--ease);
        width: 42px;
        z-index: 2;
      }
      .partner-showcase:hover .partner-nav,
      .partner-nav:focus-visible {
        opacity: 1;
      }
      .partner-nav:hover {
        background: var(--orange);
        color: var(--ink);
      }
      .partner-nav--prev { left: calc(var(--gutter) - 21px); }
      .partner-nav--next { right: calc(var(--gutter) - 21px); }
      .partner-dots {
        display: flex;
        gap: 0.45rem;
        justify-content: center;
        margin-top: 0.9rem;
        min-height: 12px;
      }
      .partner-dot {
        background: rgba(23, 21, 18, 0.22);
        border: 0;
        border-radius: 50%;
        height: 10px;
        padding: 0;
        transition: background 0.25s var(--ease), transform 0.25s var(--ease);
        width: 10px;
      }
      .partner-dot.active {
        background: var(--orange);
        transform: scale(1.35);
      }
      .partner-actions {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1.6rem;
      }
      .partner-actions .btn--ghost-light {
        background: rgba(255, 255, 255, 0.36);
      }
      .btn--dark-light {
        background: var(--ink);
        color: var(--white);
      }
      .btn--dark-light:hover {
        background: var(--orange);
        color: var(--ink);
      }
      .partner-intro {
        border-top: 1px solid var(--line-dark-soft);
        display: grid;
        gap: 1.25rem;
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr) auto;
        padding-top: 2rem;
      }
      .partner-intro h3 {
        font-size: clamp(1.4rem, 3vw, 2rem);
      }
      .partner-intro p {
        color: rgba(255, 255, 255, 0.72);
        font-family: var(--serif);
        max-width: 46ch;
      }
      .partner-card {
        align-items: center;
        display: flex;
        justify-content: center;
      }
      .activity-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2.4rem; }
      .activity-card { background: #fff; border: 1px solid var(--line-light); display: flex; flex-direction: column; min-width: 0; }
      .activity-card > img, .activity-media { background: linear-gradient(135deg, #1c1a17, #655849); height: 170px; object-fit: cover; width: 100%; }
      .activity-card-body { display: flex; flex: 1; flex-direction: column; padding: 1.25rem 1.35rem 1.4rem; }
      .activity-type { color: var(--orange-deep); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
      .activity-card h3 { font-size: 1.05rem; margin: .55rem 0 .45rem; text-transform: none; }
      .activity-card p { color: #625d55; font-family: var(--serif); font-size: .92rem; line-height: 1.55; margin: 0 0 1rem; }
      .activity-card time { color: #777168; font-size: .75rem; margin-top: auto; }
      .activity-card a { color: var(--orange-deep); font-size: .78rem; font-weight: 800; margin-top: .8rem; }
      .proj-media-image { height: 170px; object-fit: cover; width: 100%; }
      .empty-state { color: #706b63; font-family: var(--serif); }
      .dynamic-project-image { border-radius: 8px; display: block; margin: 2rem 0; max-height: 560px; object-fit: cover; width: 100%; }
      .project-detail-copy { max-width: 900px; }
      .project-detail-intro { border-left: 3px solid var(--orange); color: #514b43; font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.55rem); line-height: 1.5; margin: 2rem 0; max-width: 48ch; padding-left: 1.15rem; }
      .project-facts { border-bottom: 1px solid var(--line-light); border-top: 1px solid var(--line-light); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 2.5rem 0; }
      .project-facts div { min-height: 106px; padding: 1.1rem 1.25rem; }
      .project-facts div:nth-child(even) { border-left: 1px solid var(--line-light); }
      .project-facts div:nth-child(n + 3) { border-top: 1px solid var(--line-light); }
      .project-facts span, .project-website-text > span { color: var(--orange-deep); display: block; font-size: .67rem; font-weight: 800; letter-spacing: .12em; margin-bottom: .55rem; text-transform: uppercase; }
      .project-facts strong { color: var(--ink-on-paper); display: block; font-family: var(--serif); font-size: 1rem; font-weight: 500; line-height: 1.45; }
      .project-website-text { background: #ede7da; border: 1px solid rgba(20,18,14,.1); border-left: 3px solid var(--orange); margin: 2.5rem 0; padding: clamp(1.25rem, 3vw, 2rem); }
      .project-website-text p { color: #433e37; font-family: var(--serif); font-size: 1.08rem; font-style: italic; line-height: 1.65; margin: 0; }
      .project-full-description { margin-top: 2.5rem; }

      @media (max-width: 639px) {
        .container {
          padding-inline: 1.1rem;
        }

        .hero {
          padding-top: 6.5rem;
        }

        .hero2-title {
          font-size: clamp(2.6rem, 16vw, 4.2rem);
        }

        .hero2-ctas,
        .hero2-ctas .btn {
          width: 100%;
        }

        .hero2-ctas .btn {
          justify-content: center;
        }

        .join-block,
        .ach-wrap {
          border-radius: 10px;
          padding: 1.2rem;
        }

        .join-page {
          padding-top: 6.5rem;
        }
        .join-process-top {
          align-items: flex-start;
          flex-direction: column;
          gap: 2rem;
        }
        .join-process-tabs {
          max-width: 100%;
          width: 100%;
        }
        .join-process-steps {
          grid-template-columns: 1fr;
          gap: 1.4rem;
          padding-block: 2rem;
        }
        .join-process-steps p {
          max-width: 38ch;
        }
        .join-home-panel {
          align-items: flex-start;
          flex-direction: column;
        }
        .join-home-process-top {
          align-items: flex-start;
          flex-direction: column;
          gap: 1.8rem;
        }
        .join-home-division {
          margin-bottom: 0;
        }

        .join-head {
          align-items: flex-start;
        }

        .tabs {
          gap: 1rem;
          max-width: 100%;
          overflow-x: auto;
        }

        .tab-btn {
          flex: none;
          font-size: 0.75rem;
        }

        .cal-row {
          grid-template-columns: 1fr;
          gap: 0.35rem;
          align-items: flex-start;
        }

        .cal-tag {
          width: fit-content;
        }

        .contact-row {
          flex-direction: column;
          gap: 0.3rem;
        }

        .contact-row .k {
          width: auto;
        }

        .nl-row {
          align-items: center;
        }

        .nl-input {
          min-width: 0;
        }

        .partner-grid,
        .project-listing-grid,
        .activity-grid {
          grid-template-columns: 1fr;
        }

        .partner-showcase {
          margin-inline: -1.1rem;
          padding-inline: 1.1rem;
        }
        .partner-card {
          flex-basis: min(72vw, 250px);
        }
        .partner-nav--prev { left: 0.2rem; }
        .partner-nav--next { right: 0.2rem; }
        .partner-intro {
          grid-template-columns: 1fr;
        }
        .proj-card {
          flex-basis: 86vw;
        }
        .project-nav--prev { left: 0.2rem; }
        .project-nav--next { right: 0.2rem; }
        .calendar-intro { align-items: flex-start; flex-direction: column; }
      }

      /* ============================================================
   PROJECT DETAIL
============================================================ */
      .project-page {
        background: var(--paper);
        color: var(--ink-on-paper);
        min-height: 100vh;
        overflow: hidden;
        padding: 8rem 0 6rem;
      }
      body:has(.project-page) .nav {
        background: rgba(10, 10, 10, 0.96);
        border-bottom-color: var(--line-dark-soft);
      }
      body:has(.project-page) .brand,
      body:has(.project-page) .nav-links a,
      body:has(.project-page) .nav-toggle {
        color: var(--white);
      }
      body:has(.project-page) .nav-links a { opacity: 0.72; }
      body:has(.project-page) .nav-links a:hover { color: var(--orange); opacity: 1; }
      body:has(.project-page) .nav-toggle { border-color: var(--line-dark); }
      body:has(.project-page) .nav-toggle path { stroke: var(--white); }
      body:has(.project-page) .lang-switch { background: rgba(255,255,255,.05); border-color: var(--line-dark); }
      body:has(.project-page) .lang-switch button { color: rgba(255,255,255,.5); }
      body:has(.project-page) .lang-switch button.is-active { color: var(--ink); }
      body:has(.project-page) .social-icon { border-color: var(--line-dark); color: rgba(255,255,255,.75); }
      body:has(.project-page) .social-icon:hover { color: var(--orange); }
      .project-container {
        width: min(1120px, calc(100% - 2 * var(--gutter)));
        margin: 0 auto;
      }
      .project-breadcrumb {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
        color: #777168;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 3.2rem;
      }
      .project-breadcrumb a:hover { color: var(--orange-deep); }
      .project-heading { max-width: 850px; margin-bottom: 2.3rem; }
      .project-kicker,
      .project-section-label {
        color: var(--orange-deep);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }
      .project-heading h1 {
        color: var(--ink-on-paper);
        font-size: clamp(3.2rem, 9vw, 8.5rem);
        line-height: 0.88;
        margin: 0.75rem 0 1.5rem;
      }
      .project-intro {
        color: #5f5a52;
        font-family: var(--serif);
        font-size: clamp(1.2rem, 2.3vw, 1.7rem);
        max-width: 33ch;
      }
      .project-highlights {
        border-bottom: 1px solid var(--line-light);
        border-top: 1px solid var(--line-light);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin: 3rem 0;
      }
      .project-highlights div { min-height: 92px; padding: 1.1rem 1.25rem; }
      .project-highlights div + div { border-left: 1px solid var(--line-light); }
      .project-highlights span { color: #81796f; display: block; font-size: .63rem; font-weight: 800; letter-spacing: .11em; margin-bottom: .45rem; text-transform: uppercase; }
      .project-highlights strong { color: var(--ink-on-paper); font-size: clamp(.88rem, 1.5vw, 1.05rem); line-height: 1.2; }
      .project-cover {
        min-height: clamp(360px, 52vw, 650px);
        position: relative;
        overflow: hidden;
        background: #101010;
        border-radius: 4px;
        margin-bottom: 1rem;
      }
      .cover-grid {
        position: absolute;
        inset: 0;
        opacity: 0.32;
        background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
        background-size: 62px 62px;
        transform: perspective(500px) rotateX(55deg) scale(1.6) translateY(24%);
      }
      .cover-river {
        position: absolute;
        width: 72%;
        height: 22%;
        left: 14%;
        top: 40%;
        border-top: 2px solid var(--orange);
        border-radius: 50%;
        transform: rotate(-18deg);
        box-shadow: 0 -22px 0 -20px rgba(253,119,21,.7), 0 22px 0 -20px rgba(253,119,21,.45);
      }
      .cover-label {
        position: absolute;
        left: clamp(1.2rem, 5vw, 4rem);
        bottom: clamp(1.2rem, 5vw, 4rem);
        color: white;
        font-size: clamp(2rem, 6vw, 5.5rem);
        font-weight: 800;
        line-height: 0.9;
        text-transform: uppercase;
      }
      .cover-note {
        position: absolute;
        right: 1.4rem;
        top: 1.4rem;
        color: rgba(255,255,255,.6);
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }
      .project-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: clamp(4rem, 9vw, 8rem); position: relative; }
      .project-button,
      .support-submit {
        border: 0;
        border-radius: 3px;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.3rem;
        font-family: var(--sans);
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        padding: 1rem 1.3rem;
        text-transform: uppercase;
        transition: transform .25s var(--ease), background .25s var(--ease);
      }
      .project-button:hover,
      .support-submit:hover { transform: translateY(-2px); }
      .project-button--dark { background: #000; color: #fff; }
      .project-button--orange { background: var(--orange); color: #000; cursor: pointer; }
      .share-popover { background: rgba(250,250,255,.98); border: 1px solid rgba(20,18,14,.12); border-radius: 12px; box-shadow: 0 18px 45px rgba(0,0,0,.2); color: #252525; min-width: 250px; padding: 0.55rem; position: absolute; right: 0; top: calc(100% + 0.6rem); z-index: 20; }
      .share-popover[hidden] { display: none; }
      .share-popover-head { align-items: center; display: flex; justify-content: space-between; padding: 0.25rem 0.5rem 0.55rem; }
      .share-popover-head strong { font-size: 0.72rem; }
      .share-popover-head button { background: none; border: 0; color: #777; cursor: pointer; font-size: 1.2rem; line-height: 1; }
      .share-links { display: grid; gap: 0.18rem; grid-template-columns: repeat(2, 1fr); }
      .share-links a, .share-links button { align-items: center; background: transparent; border: 0; border-radius: 7px; color: #252525; cursor: pointer; display: flex; font: 600 0.72rem var(--sans); gap: 0.4rem; padding: 0.55rem 0.45rem; text-align: left; }
      .share-links a:hover, .share-links button:hover { background: #ececf4; }
      .share-links button:last-child { grid-column: 1 / -1; justify-content: center; }
      .share-brand { align-items: center; background: #fff; border: 1px solid rgba(0,0,0,.12); border-radius: 50%; display: inline-flex; font-size: 0.7rem; height: 19px; justify-content: center; width: 19px; }
      .project-copy { max-width: 760px; margin: 0 auto clamp(4rem, 9vw, 8rem); }
      .project-copy h2 { color: var(--ink-on-paper); font-size: clamp(2rem, 4.5vw, 3.8rem); margin: 0.6rem 0 2.3rem; }
      .project-copy h3 { color: var(--orange-deep); font-size: 1.25rem; margin: 3rem 0 0.8rem; }
      .project-copy p { color: #3f3b36; font-family: var(--serif); font-size: 1.1rem; line-height: 1.75; margin-bottom: 1.2rem; }
      .project-copy strong { color: var(--ink-on-paper); font-family: var(--sans); font-size: 0.9em; }
      .project-gallery { margin-bottom: clamp(4rem, 9vw, 8rem); }
      .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 0.7rem; margin-top: 1rem; }
      .gallery-placeholder { align-items: center; background: linear-gradient(135deg, #ded8ca, #b7ae9d); color: rgba(23,21,18,.6); display: flex; font-size: 0.7rem; justify-content: center; letter-spacing: 0.1em; min-height: 170px; text-transform: uppercase; }
      .gallery-placeholder--wide { grid-column: span 2; }
      .support-section { margin-bottom: clamp(4rem, 9vw, 8rem); }
      .support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
      .support-card { background: #000; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; color: #fff; padding: clamp(1.5rem, 4vw, 2.5rem); }
      .support-card h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); line-height: 1; margin: 0 0 2rem; text-transform: none; }
      .support-tabs { border-bottom: 1px solid rgba(255,255,255,.14); display: flex; gap: 1.3rem; margin-bottom: 1.6rem; }
      .support-tab { background: none; border: 0; color: rgba(255,255,255,.45); cursor: pointer; font-size: 0.8rem; font-weight: 700; padding: 0 0 0.75rem; position: relative; }
      .support-tab.is-active { color: #fff; }
      .support-tab.is-active::after { background: var(--orange); bottom: -1px; content: ""; height: 2px; left: 0; position: absolute; right: 0; }
      .amount-field { align-items: center; border-bottom: 1px solid rgba(255,255,255,.28); display: flex; gap: 0.7rem; margin: 2rem 0 1rem; }
      .amount-field input { background: none; border: 0; color: var(--orange); font-size: clamp(3rem, 8vw, 5rem); font-weight: 800; min-width: 0; outline: none; width: 100%; }
      .amount-field select { background: #181818; border: 1px solid rgba(255,255,255,.18); border-radius: 3px; color: #bbb; padding: 0.45rem; }
      .quick-amounts { display: flex; gap: 0.5rem; flex-wrap: wrap; }
      .quick-amounts button { background: #111; border: 1px solid rgba(255,255,255,.2); border-radius: 100px; color: #fff; cursor: pointer; padding: 0.55rem 0.8rem; }
      .support-mode-note { color: #888; font-size: 0.8rem; min-height: 1.2rem; }
      .support-submit { background: var(--orange); color: #000; margin-top: 1.8rem; width: 100%; }
      .requisite-link { color: var(--orange); text-decoration: underline; }
      .requisite-panel { display: none; color: #c8c8c8; font-family: var(--serif); line-height: 1.6; }
      .requisite-panel.is-active { display: block; }
      .requisite-panel strong { color: white; display: block; font-family: var(--sans); font-size: 0.78rem; margin-top: 1.8rem; }
      .bank-details { margin: 0; }
      .bank-details div { border-bottom: 1px solid rgba(255,255,255,.09); padding: 0.65rem 0; }
      .bank-details dt { color: #777; font-family: var(--sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
      .bank-details dd { margin: 0.15rem 0 0; }
      .iban-row dd { align-items: center; display: flex; gap: 0.5rem; justify-content: space-between; }
      .iban-row button { background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 3px; color: white; cursor: pointer; font-size: 0.7rem; padding: 0.3rem 0.5rem; }
      .iban-row button:disabled { color: #666; cursor: not-allowed; opacity: .65; }
      .tax-note { border-left: 2px solid var(--orange); color: #999; font-size: 0.76rem; line-height: 1.5; margin: 1.5rem 0 0; padding-left: 0.8rem; }
      .other-projects { margin-bottom: 4rem; }
      .other-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
      .other-project-card { background: #fff; border: 1px solid var(--line-light); border-radius: 4px; color: var(--ink-on-paper); overflow: hidden; padding-bottom: 1.4rem; }
      .other-project-card h3, .other-project-card p, .other-project-card > span { margin-left: 1.2rem; margin-right: 1.2rem; }
      .other-project-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; margin-top: 1.2rem; text-transform: none; }
      .other-project-card p { color: #625d55; font-family: var(--serif); font-size: 0.92rem; line-height: 1.5; min-height: 4.2rem; }
      .other-project-card > span { color: var(--orange-deep); font-size: 0.78rem; font-weight: 800; }
      .other-project-image { align-items: center; background: linear-gradient(135deg, #24211c, #625645); color: rgba(255,255,255,.65); display: flex; height: 170px; justify-content: center; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
      .floating-support { background: #ffd2b4; border: 1px solid rgba(20,18,14,.1); border-radius: 16px; bottom: 1.5rem; box-shadow: 0 18px 50px rgba(70,35,10,.18); color: var(--ink-on-paper); display: flex; flex-direction: column; gap: 0.55rem; padding: 1.25rem; position: fixed; right: max(1.25rem, calc((100vw - 1280px) / 2)); width: 190px; z-index: 30; }
      .floating-support-label { color: var(--orange-deep); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
      .floating-support strong { font-size: 1.15rem; line-height: 1; }
      .floating-support a { background: var(--orange); border-radius: 3px; color: #000; font-size: 0.7rem; font-weight: 800; padding: 0.65rem 0.75rem; text-align: center; text-transform: uppercase; }

      @media (max-width: 760px) {
        .project-page { padding-top: 6.5rem; }
        .project-container { width: min(100% - 2.2rem, 1120px); }
        .project-breadcrumb { margin-bottom: 2rem; }
        .project-actions .project-button { flex: 1 1 100%; }
        .project-highlights { grid-template-columns: 1fr; margin: 2rem 0; }
        .project-highlights div { min-height: 0; padding: .9rem 0; }
        .project-highlights div + div { border-left: 0; border-top: 1px solid var(--line-light); }
        .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
        .gallery-placeholder { min-height: 130px; }
        .gallery-placeholder--wide { grid-column: span 2; }
        .support-grid, .other-project-grid { grid-template-columns: 1fr; }
        .other-project-card p { min-height: auto; }
        .floating-support { bottom: auto; left: auto; margin: 0 1.1rem 1rem; padding: 0.8rem 1rem; position: static; right: auto; width: auto; }
        .floating-support strong { font-size: 1rem; }
        .floating-support-label { display: none; }
        .floating-support a { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); width: 110px; }
      }

      /* ============================================================
   VISUAL POLISH
============================================================ */
      .section--paper,
      .section--paper2 {
        isolation: isolate;
        overflow: hidden;
      }
      .section--paper::before,
      .section--paper2::before {
        background-image: linear-gradient(rgba(23, 21, 18, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 21, 18, 0.035) 1px, transparent 1px);
        background-size: 42px 42px;
        content: "";
        inset: 0;
        mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
        opacity: 0.22;
        pointer-events: none;
        position: absolute;
        z-index: -1;
      }
      .section--paper2::before {
        opacity: 0.14;
      }
      .section > .container {
        position: relative;
        z-index: 1;
      }
      .btn,
      .btn-sm,
      .join-process-cta,
      .project-button {
        will-change: transform;
      }
      .btn:active,
      .btn-sm:active,
      .join-process-cta:active,
      .project-button:active {
        transform: translateY(0) scale(0.98);
      }
      .btn--solid,
      .join-process-cta {
        box-shadow: 0 10px 24px rgba(253, 119, 21, 0.16);
      }
      .hero2-card,
      .join-process,
      .join-home-process {
        box-shadow: 0 26px 70px rgba(10, 10, 10, 0.14);
      }
      .partner-card,
      .proj-card,
      .member-card,
      .media-tile,
      .faq-feature-group {
        box-shadow: 0 8px 22px rgba(23, 21, 18, 0.035);
      }
      .partner-card:hover,
      .proj-card:hover,
      .member-card:hover,
      .media-tile:hover {
        box-shadow: 0 14px 28px rgba(23, 21, 18, 0.1);
      }
      .reveal.is-visible {
        animation: polish-in 0.75s var(--ease) both;
      }
      @keyframes polish-in {
        from { opacity: 0; transform: translateY(18px); }
        to { opacity: 1; transform: translateY(0); }
      }
      @media (prefers-reduced-motion: reduce) {
        .reveal.is-visible { animation: none; }
      }

      /* Empty content should feel intentional while the editorial library grows. */
      .content-empty {
        align-items: flex-start;
        background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.32));
        border: 1px dashed rgba(217, 100, 10, .38);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: .65rem;
        justify-content: center;
        min-height: 220px;
        padding: clamp(1.5rem, 3vw, 2.5rem);
      }
      .content-empty__eyebrow {
        color: var(--orange-deep);
        font-size: .66rem;
        font-weight: 800;
        letter-spacing: .14em;
        text-transform: uppercase;
      }
      .content-empty h3 {
        font-size: clamp(1.35rem, 2.6vw, 2rem);
        letter-spacing: -.03em;
        line-height: 1;
        text-transform: uppercase;
      }
      .content-empty p { color: #625d55; font-family: var(--serif); font-size: 1.05rem; max-width: 34ch; }
      .content-empty--media { grid-column: 1 / -1; min-height: 280px; }
      .content-empty--team { grid-column: 1 / -1; min-height: 240px; }
      .partner-card--placeholder { min-height: 132px; }
      .footer-logo { display: block; margin-bottom: 1rem; width: min(180px, 100%); }
      .footer-logo img { height: auto; width: 100%; }
      .footer a { transition: color .2s var(--ease); }
      .footer a:hover { color: var(--orange); }
      @media (max-width: 760px) {
        .content-empty--media, .content-empty--team { min-height: 190px; }
        .partner-card--placeholder { min-height: 112px; }
      }


      

      .hero2-ctas-wrap {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-donate {
  display: block;
  width: 100%;

  margin-top: 1.35rem;
  padding: 1.3rem;

  border: 1px solid var(--line-dark);
  border-radius: 8px;

  background: rgba(255, 255, 255, 0.035);
}

/* Shared project-detail layout: editorial content left, donation panel right. */
.project-layout-v2 { overflow: visible; }
.project-layout-v2 .project-container { box-sizing: border-box; margin: 0 auto; max-width: 1280px; padding: 0 24px; width: 100%; }
.project-layout-v2 .project-breadcrumb { margin-bottom: 32px; }
.project-content-grid { align-items: start; display: grid; gap: 40px; grid-template-columns: minmax(0, 1fr) 440px; margin-bottom: 48px; }
.project-content-column { min-width: 0; }
.project-layout-v2 .project-heading { margin: 0 0 32px; max-width: 100%; }
.project-layout-v2 .project-heading h1 { font-size: clamp(3.1rem, 7vw, 6.7rem); line-height: .92; margin: .65rem 0 1rem; }
.project-layout-v2 .project-intro { font-size: clamp(1.08rem, 1.7vw, 1.45rem); line-height: 1.45; max-width: 48ch; }
.project-layout-v2 .project-highlights { border: 0; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0 0 48px; }
.project-layout-v2 .project-highlights div { background: rgba(255,255,255,.48); border: 1px solid var(--line-light); border-radius: 16px; min-height: 104px; padding: 20px; }
.project-layout-v2 .project-highlights div + div { border-left: 1px solid var(--line-light); }
.project-layout-v2 .project-cover { border-radius: 16px; margin: 0 0 20px; min-height: 0; }
.project-layout-v2 .project-cover img { display: block; height: auto; max-height: 650px; object-fit: cover; width: 100%; }
.project-layout-v2 .project-actions { margin: 0 0 48px; }
.project-layout-v2 .project-copy, .project-layout-v2 .project-facts-section, .project-layout-v2 .project-website-note, .project-layout-v2 .project-gallery, .project-layout-v2 .project-events-block { margin: 0 0 48px; }
.project-layout-v2 .project-copy { max-width: 100%; }
.project-layout-v2 .project-copy .project-description p { color: #3f3b36; font-family: var(--serif); font-size: 1.08rem; line-height: 1.75; max-width: 72ch; }
.project-facts-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-facts-grid > div { background: rgba(255,255,255,.48); border: 1px solid var(--line-light); border-radius: 16px; min-height: 112px; padding: 20px; }
.project-facts-grid span { color: var(--orange-deep); display: block; font-size: .67rem; font-weight: 800; letter-spacing: .12em; margin-bottom: .65rem; text-transform: uppercase; }
.project-facts-grid strong { color: var(--ink-on-paper); display: block; font-family: var(--serif); font-size: 1rem; font-weight: 500; line-height: 1.45; white-space: pre-line; }
.project-layout-v2 .project-website-note { background: #ede7da; border: 1px solid rgba(20,18,14,.1); border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0; color: #433e37; font: italic 1.08rem/1.65 var(--serif); padding: clamp(1.25rem, 3vw, 2rem); }
.project-layout-v2 .project-website-note p { margin: 0 0 1rem; }
.project-layout-v2 .gallery-grid { grid-template-columns: repeat(4, 1fr); }
.project-layout-v2 .gallery-placeholder { border-radius: 10px; overflow: hidden; position: relative; }
.project-layout-v2 .gallery-placeholder img { height: 100%; object-fit: cover; width: 100%; }
.project-layout-v2 .gallery-placeholder figcaption { background: rgba(0,0,0,.65); bottom: 0; color: #fff; font-size: .72rem; left: 0; padding: .55rem .7rem; position: absolute; right: 0; }
.project-events-block article { border-top: 1px solid var(--line-light); display: grid; gap: 1.5rem; grid-template-columns: minmax(110px, .32fr) 1fr; padding: 1.25rem 0; }
.project-events-block article:last-child { border-bottom: 1px solid var(--line-light); }
.project-events-block strong { color: var(--orange-deep); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.project-events-block h3 { font-size: 1.2rem; margin: 0 0 .4rem; text-transform: none; }
.project-events-block p { color: #625d55; font-family: var(--serif); margin: .3rem 0; }
.project-donation-column { align-self: start; background: rgba(255,255,255,.92); border: 1px solid rgba(20,18,14,.14); border-radius: 24px; box-shadow: 0 22px 60px rgba(70,35,10,.16); height: fit-content; padding: 16px; position: sticky; top: 100px; }
.project-donation-column .support-card--compact { background: transparent; border: 0; color: var(--ink-on-paper); padding: 8px; }
.project-donation-column .support-tabs { border-color: #b8bfd1; gap: 2.75rem; margin-bottom: 1.45rem; }
.project-donation-column .support-tab { color: #3f3b36; font-size: .92rem; padding: 0 .1rem .9rem; }
.project-donation-column .support-tab.is-active { color: #000; }
.project-donation-column .support-tab.is-active::after { background: var(--orange); border-radius: 99px; height: 4px; }
.project-donation-column .amount-field { border-bottom: 2px dotted #aeb8cf; margin: 0 0 18px; padding-bottom: 3px; }
.project-donation-column .amount-field input { color: #000; font-size: clamp(3.5rem, 5vw, 4.4rem); font-weight: 500; line-height: 1; }
.project-donation-column .amount-field select { appearance: none; background: transparent; border: 0; color: #aeb8cf; font-size: 1.2rem; font-weight: 800; padding: .45rem 0 .45rem .8rem; }
.project-donation-column .quick-amounts { display: grid; gap: 4px; grid-template-columns: repeat(3, 1fr); }
.project-donation-column .quick-amounts button { background: #fff; border-color: #aeb8cf; color: #000; font-size: .76rem; font-weight: 800; padding: .7rem .25rem; white-space: nowrap; }
.project-donation-column .support-mode-note { color: #7d8494; margin: 14px 0 0; }
.project-donation-column .support-submit { background: var(--orange); border-radius: 999px; color: #000; font-size: .88rem; margin-top: 20px; padding: 1rem 1.25rem; }
.compact-requisites-link { align-items: center; background: #f0f1f7; border-radius: 999px; color: #000; display: flex; font: 800 .82rem var(--sans); justify-content: space-between; margin-top: 8px; padding: .95rem 1.25rem; text-transform: uppercase; }
.subscription-alternative { color: #4e4a43; font: .82rem/1.45 var(--sans); padding: 12px 0 0; text-align: center; }
.subscription-alternative > span { display: block; font-size: 1rem; margin-bottom: 9px; }
.subscription-alternative a { background: var(--orange); border-radius: 999px; color: #000; display: block; font-size: 1rem; font-weight: 800; padding: .85rem 1rem; text-transform: uppercase; }
.subscription-alternative p { margin: 12px 0 0; }
.project-layout-v2 .support-section { background: #101010; border-radius: 24px; color: #fff; margin-bottom: 48px; padding: clamp(1.5rem, 5vw, 3.5rem); }
.project-layout-v2 .support-section .project-section-label { color: var(--orange); }
.project-layout-v2 .other-projects { margin-bottom: 4rem; }
.project-layout-v2 .other-project-image img { height: 100%; object-fit: cover; width: 100%; }

@media (max-width: 1080px) {
  .project-content-grid { gap: 28px; grid-template-columns: minmax(0, 1fr) 360px; }
}
@media (max-width: 760px) {
  .project-layout-v2 .project-container { padding: 0 1.1rem; }
  .project-content-grid { display: flex; flex-direction: column; gap: 0; }
  .project-donation-column { margin: 0 0 32px; order: -1; position: static; width: 100%; }
  .project-layout-v2 .project-highlights, .project-facts-grid { grid-template-columns: 1fr; }
  .project-layout-v2 .project-highlights div + div { border-left: 1px solid var(--line-light); }
  .project-layout-v2 .project-cover, .project-layout-v2 .project-actions, .project-layout-v2 .project-copy, .project-layout-v2 .project-facts-section, .project-layout-v2 .project-website-note, .project-layout-v2 .project-gallery, .project-layout-v2 .project-events-block { margin-bottom: 32px; }
  .project-events-block article { grid-template-columns: 1fr; }
  .project-layout-v2 .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
