﻿    /* Post-hero: What is BPM + gallery + founder (layout ref) */
    .hm-intro-section {
      background: #f9f6f0;
      color: #1a1712;
      content-visibility: auto;
      contain-intrinsic-size: 1320px;
    }

    .hm-intro-top {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
      gap: clamp(28px, 3.5vw, 48px);
      align-items: start;
    }

    .hm-intro-kicker {
      font-family: var(--type-kicker-font-family);
      font-size: var(--type-kicker-font-size);
      font-weight: var(--type-kicker-font-weight);
      line-height: var(--type-kicker-line-height);
      letter-spacing: var(--type-kicker-letter-spacing);
      text-transform: var(--type-kicker-text-transform);
      color: #9f8335;
      margin: 0 0 clamp(14px, 1.8vh, 20px);
    }

    .hm-intro-title {
      font-family: var(--type-h2-font-family);
      font-size: var(--type-h2-font-size);
      font-weight: var(--type-h2-font-weight);
      line-height: var(--type-h2-line-height);
      letter-spacing: var(--type-h2-letter-spacing);
      color: #12100d;
      margin: 0;
    }

    .hm-intro-body {
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-font-size);
      line-height: var(--type-body-line-height);
      font-weight: var(--type-body-font-weight);
      color: #3a3228;
      margin: 0 0 1em;
    }

    .hm-intro-copy .hm-intro-body:last-of-type {
      margin-bottom: clamp(22px, 2.5vh, 30px);
    }

    .hm-intro-cta-solid {
      display: flex;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

    .hm-intro-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(12px, 1.4vw, 16px);
      margin-bottom: clamp(26px, 3vh, 36px);
    }

    .hm-intro-feature {
      background: #fdfcf7;
      border: 1px solid rgba(184, 151, 58, 0.22);
      border-radius: var(--radius-14);
      padding: clamp(14px, 1.6vw, 18px);
    }

    .hm-intro-feature-icon {
      width: 32px;
      height: 32px;
      margin-bottom: 10px;
      color: #b8973a;
    }

    .hm-intro-feature-icon svg {
      width: 100%;
      height: 100%;
    }

    .hm-intro-copy .hm-intro-kicker,
    .hm-intro-visual .hm-intro-kicker {
      font-size: var(--type-caption-font-size);
    }

    .hm-intro-feature h3 {
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-font-size);
      font-weight: 700;
      line-height: var(--type-body-line-height);
      color: #9f8335;
      margin: 0 0 8px;
      letter-spacing: 0.02em;
    }

    .hm-intro-feature p {
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: #5c5245;
      margin: 0;
    }

    .hm-intro-bento {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: minmax(160px, 16vw) minmax(140px, 13vw);
      gap: clamp(10px, 1.1vw, 14px);
    }

    .hm-intro-bento-cell {
      border-radius: var(--radius-14);
      overflow: hidden;
      border: 1px solid rgba(184, 151, 58, 0.2);
      background: #e8e3d9;
      min-height: 0;
    }

    .hm-intro-bento-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hm-intro-bento-c1 { grid-column: 1 / 5; grid-row: 1; }
    .hm-intro-bento-c4 { grid-column: 5 / 7; grid-row: 1; }
    .hm-intro-bento-c5 { grid-column: 1 / -1; grid-row: 2; }

    .hm-intro-founder {
      margin-top: clamp(36px, 4vh, 52px);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: clamp(20px, 3vw, 36px);
      padding: clamp(22px, 2.5vw, 32px) clamp(24px, 3vw, 40px);
      background: #fdfcf7;
      border: 1px solid rgba(184, 151, 58, 0.25);
      border-radius: var(--radius-18);
      box-shadow: var(--shadow-ambient-soft);
    }

    .hm-intro-founder-photo {
      flex-shrink: 0;
      width: clamp(100px, 12vw, 140px);
      height: clamp(100px, 12vw, 140px);
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid rgba(184, 151, 58, 0.35);
    }

    .hm-intro-founder-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hm-intro-founder-copy {
      flex: 1;
      min-width: min(100%, 240px);
    }

    .hm-intro-founder-copy .hm-intro-kicker {
      margin-bottom: 12px;
    }

    .hm-intro-founder-copy p {
      margin: 0;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-font-size);
      line-height: var(--type-body-line-height);
      font-weight: var(--type-body-font-weight);
      color: #3a3228;
    }

    @media (max-width: 960px) {
      .hm-intro-top {
        grid-template-columns: 1fr;
      }

      .hm-intro-features {
        grid-template-columns: 1fr;
      }

      .hm-intro-feature {
        text-align: center;
      }

      .hm-intro-feature-icon {
        margin-left: auto;
        margin-right: auto;
      }

      .hm-intro-copy {
        display: flex;
        flex-direction: column;
        align-items: stretch;
      }

      .hm-intro-cta-solid {
        align-self: center;
      }

      .hm-intro-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        grid-auto-rows: minmax(140px, 32vw);
      }

      .hm-intro-bento-c1 { grid-column: 1 / -1; grid-row: auto; }
      .hm-intro-bento-c4 { grid-column: 1; grid-row: auto; }
      .hm-intro-bento-c5 { grid-column: 2; grid-row: auto; }
    }

    @media (max-width: 520px) {
      .hm-intro-bento {
        grid-template-columns: 1fr;
      }

      .hm-intro-bento-c1,
      .hm-intro-bento-c4,
      .hm-intro-bento-c5 {
        grid-column: 1;
        grid-row: auto;
      }

      .hm-intro-founder {
        flex-direction: column;
        text-align: center;
      }

      .hm-intro-founder-copy {
        text-align: center;
      }
    }
    /* Founding 500 (editorial 1:1) */
    .founding-section {
      --f500-gold: #b58e58;
      --f500-bg: #f9f7f2;
      --f500-text: #1a1a1a;
      background: var(--f500-bg);
      color: var(--f500-text);
      position: relative;
      overflow: hidden;
      content-visibility: auto;
      contain-intrinsic-size: 1100px;
    }

    .founding-top {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
      gap: clamp(28px, 3.5vw, 48px);
      align-items: stretch;
    }

    .founding-left {
      position: relative;
      padding-left: clamp(8px, 1.2vw, 20px);
      align-self: stretch;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .founding-left::before {
      content: "";
      position: absolute;
      left: -12px;
      top: 0;
      width: clamp(72px, 9vw, 110px);
      height: 100%;
      pointer-events: none;
      opacity: 0.28;
      background:
        radial-gradient(ellipse 55% 48% at 30% 20%, transparent 58%, rgba(181, 142, 88, 0.45) 59%, transparent 60%),
        radial-gradient(ellipse 48% 42% at 55% 45%, transparent 58%, rgba(181, 142, 88, 0.38) 59%, transparent 60%),
        radial-gradient(ellipse 52% 46% at 22% 72%, transparent 58%, rgba(181, 142, 88, 0.4) 59%, transparent 60%);
      filter: blur(0.2px);
    }

    .founding-title {
      margin: 0;
      font-family: var(--type-h2-font-family);
      font-size: var(--type-h2-font-size);
      line-height: var(--type-h2-line-height);
      letter-spacing: var(--type-h2-letter-spacing);
      font-weight: var(--type-h2-font-weight);
      color: #14110e;
      max-width: 14ch;
    }

    .founding-copy {
      margin: 0;
      max-width: 38ch;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: #3a3530;
    }

    .founding-footnote {
      margin: clamp(18px, 2.2vh, 24px) 0 0;
      max-width: 36ch;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      font-weight: 600;
      letter-spacing: 0.2em;
      line-height: var(--type-body-sm-line-height);
      text-transform: uppercase;
      color: var(--f500-gold);
    }

    .founding-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(12px, 1.3vw, 16px);
    }

    .founding-card {
      background: #fdfcfa;
      border: 1px solid rgba(181, 142, 88, 0.22);
      border-radius: var(--radius-14);
      padding: clamp(14px, 1.5vw, 18px) clamp(14px, 1.6vw, 18px) clamp(16px, 1.8vw, 20px);
      box-shadow: 0 6px 22px rgba(20, 14, 6, 0.05);
      min-height: 0;
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }

    .founding-card-icon {
      width: 28px;
      height: 28px;
      margin-bottom: 10px;
      color: var(--f500-gold);
      flex-shrink: 0;
      align-self: flex-start;
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1;
    }

    .founding-card-icon svg {
      width: 100%;
      height: 100%;
      display: block;
      flex-shrink: 0;
    }

    .founding-card-title {
      margin: 0 0 8px;
      font-family: var(--type-h4-font-family);
      font-size: var(--type-h4-font-size);
      font-weight: var(--type-h4-font-weight);
      line-height: var(--type-h4-line-height);
      letter-spacing: var(--type-h4-letter-spacing);
      color: #14110e;
    }

    .founding-card-copy {
      margin: 0;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: #4a433a;
    }

    .founding-how {
      margin-top: clamp(40px, 5vh, 56px);
      padding: clamp(22px, 2.8vw, 32px) clamp(22px, 3vw, 36px);
      border: 1px solid rgba(181, 142, 88, 0.45);
      border-radius: var(--radius-16);
      background: rgba(255, 255, 255, 0.45);
    }

    .founding-how--grid {
      margin-top: 0;
      padding: 0;
      border: none;
      border-radius: 0;
      background: transparent;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(12px, 1.3vw, 16px);
      align-self: stretch;
    }

    .founding-how-title {
      margin: 0 0 clamp(18px, 2.4vh, 26px);
      font-family: var(--type-h3-font-family);
      font-size: var(--type-h3-font-size);
      font-weight: var(--type-h3-font-weight);
      line-height: var(--type-h3-line-height);
      letter-spacing: var(--type-h3-letter-spacing);
      color: #14110e;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(181, 142, 88, 0.55);
      display: inline-block;
      min-width: 0;
    }

    .founding-steps {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      justify-content: space-between;
      gap: clamp(12px, 2vw, 24px);
    }

    .founding-step {
      flex: 1 1 180px;
      min-width: min(100%, 200px);
      max-width: 260px;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      min-height: 0;
    }

    .founding-how--grid .founding-step {
      min-width: 0;
      max-width: none;
      padding: clamp(18px, 1.8vw, 22px);
      background: #fdfcfa;
      border: 1px solid rgba(181, 142, 88, 0.22);
      border-radius: var(--radius-14);
      box-shadow: 0 6px 22px rgba(20, 14, 6, 0.05);
    }

    .founding-how--grid .founding-step-sep,
    .founding-how--grid .founding-how-title,
    .founding-how--grid .founding-steps {
      display: none;
    }

    @media (min-width: 861px) {
      .founding-steps {
        flex-wrap: nowrap;
      }

      .founding-step-sep {
        margin-top: 0;
        align-self: center;
      }

      .founding-step {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
      }
    }

    .founding-step-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid var(--f500-gold);
      color: var(--f500-gold);
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      align-self: flex-start;
      flex-shrink: 0;
      box-sizing: border-box;
    }

    .founding-step-head {
      margin: 0 0 6px;
      font-family: var(--type-h4-font-family);
      font-size: var(--type-h4-font-size);
      font-weight: var(--type-h4-font-weight);
      line-height: var(--type-h4-line-height);
      letter-spacing: var(--type-h4-letter-spacing);
      color: #14110e;
    }

    .founding-step-head strong {
      font-weight: 700;
    }

    .founding-step-copy {
      margin: 0;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: #4a433a;
    }

    .founding-step-sep {
      flex: 0 0 auto;
      align-self: center;
      color: var(--f500-gold);
      font-size: 18px;
      font-weight: 600;
      padding: 0 4px;
      margin-top: 0;
      opacity: 0.85;
    }

    @media (max-width: 1100px) {
      .founding-top {
        grid-template-columns: 1fr;
      }

      .founding-title {
        max-width: none;
      }
    }

    @media (max-width: 860px) {
      .founding-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .founding-how {
        text-align: center;
      }

      .founding-how--grid {
        grid-template-columns: 1fr;
      }

      .founding-how-title {
        display: inline-block;
      }

      .founding-steps {
        flex-direction: column;
        justify-content: center;
      }

      .founding-step-sep {
        display: none;
      }

      .founding-step {
        align-items: center;
        text-align: center;
        max-width: none;
      }

      .founding-step-num {
        align-self: center;
      }

      .founding-how--grid .founding-step {
        align-items: center;
        text-align: center;
      }
    }

    /* Sense of the Day (editorial 1:1) */
    .sense-day-section {
      --sd-gold: #b8973a;
      --sd-bg: #f9f4e8;
      --sd-ink: #14110e;
      background: var(--sd-bg);
      color: var(--sd-ink);
      content-visibility: auto;
      contain-intrinsic-size: 900px;
    }

    .sense-day-header {
      text-align: center;
      margin-bottom: clamp(40px, 5vh, 56px);
    }

    .sense-day-eyebrow {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(12px, 1.6vh, 18px);
      margin-bottom: clamp(14px, 2vh, 20px);
    }

    .sense-day-eyebrow-bar {
      width: 100%;
      max-width: 320px;
    }

    .sense-day-line {
      display: block;
      width: 100%;
      height: 1px;
      background: rgba(184, 151, 58, 0.72);
      border-radius: var(--radius-pill);
    }

    .sense-day-kicker {
      margin: 0;
      font-family: var(--type-body-font-family);
      font-size: var(--type-caption-font-size);
      font-weight: 600;
      line-height: var(--type-caption-line-height);
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--sd-gold);
    }

    .sense-day-title {
      margin: clamp(10px, 1.4vh, 16px) 0 0;
      font-family: var(--type-h2-font-family);
      font-size: var(--type-h2-font-size);
      font-weight: var(--type-h2-font-weight);
      line-height: var(--type-h2-line-height);
      letter-spacing: var(--type-h2-letter-spacing);
      color: var(--sd-ink);
    }

    .sense-day-intro {
      margin: clamp(10px, 1.4vh, 16px) auto 0;
      max-width: 52ch;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-font-size);
      line-height: var(--type-body-line-height);
      font-weight: var(--type-body-font-weight);
      color: #2a241c;
    }

    .sense-day-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: clamp(14px, 1.6vw, 20px);
      align-items: stretch;
    }

    .sense-day-card {
      grid-column: span 2;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      gap: clamp(12px, 1.4vw, 18px);
      padding: clamp(14px, 1.6vw, 20px);
      background: #fcf9f2;
      border: 1px solid rgba(184, 151, 58, 0.16);
      border-radius: var(--radius-14);
      box-shadow: 0 8px 26px rgba(30, 22, 10, 0.06);
      min-height: 0;
    }

    .sense-day-card-art {
      flex: 0 0 clamp(72px, 9vw, 104px);
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      color: #6b5340;
    }

    .sense-day-card-art img {
      width: 100%;
      max-width: clamp(72px, 9vw, 104px);
      height: auto;
      display: block;
      object-fit: contain;
    }

    .sense-day-card-body {
      flex: 1;
      min-width: 0;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
    }

    .sense-day-day {
      margin: 0;
      font-family: var(--type-h5-font-family);
      font-size: var(--type-h5-font-size);
      font-weight: var(--type-h5-font-weight);
      line-height: var(--type-h5-line-height);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sd-gold);
    }

    .sense-day-sense {
      margin: 0;
      font-family: var(--type-h3-font-family);
      font-size: var(--type-h3-font-size);
      font-weight: var(--type-h3-font-weight);
      line-height: var(--type-h3-line-height);
      letter-spacing: var(--type-h3-letter-spacing);
      color: var(--sd-ink);
    }

    .sense-day-desc {
      margin: 0;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: #3a3228;
    }

    .sense-day-card--thu {
      grid-column: 2 / 4;
    }

    .sense-day-card--fri {
      grid-column: 4 / 6;
    }

    .sense-day-footer {
      margin-top: clamp(36px, 4.5vh, 52px);
      text-align: center;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: var(--sd-gold);
    }

    .sense-day-footer-star {
      display: inline-block;
      width: 9px;
      height: 9px;
      margin: 0 10px;
      vertical-align: middle;
      color: var(--sd-gold);
      opacity: 0.95;
    }

    @media (max-width: 820px) {
      .sense-day-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .sense-day-card:not(.sense-day-card--fri) {
        grid-column: span 1;
      }

      .sense-day-card--thu {
        grid-column: span 1;
      }

      .sense-day-card--fri {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 22rem);
        max-width: min(100%, 22rem);
      }

      .sense-day-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .sense-day-card-body {
        text-align: center;
        align-items: center;
      }

      .sense-day-card-art {
        align-self: center;
      }
    }

    @media (max-width: 520px) {
      .sense-day-card {
        flex-direction: column;
        align-items: center;
      }

      .sense-day-card-art {
        align-self: center;
      }
    }

    /* Share Your Reflection (editorial 1:1) */
    .share-reflection-section {
      background: #030406;
      padding: clamp(40px, 5.5vh, 72px) 0;
      content-visibility: auto;
      contain-intrinsic-size: 900px;
    }

    .share-reflection-shell {
      max-width: var(--site-content-max);
      margin: 0 auto;
      padding-left: var(--site-content-pad-x);
      padding-right: var(--site-content-pad-x);
    }

    .share-reflection-panel {
      border: 1px solid rgba(184, 151, 58, 0.58);
      border-radius: var(--radius-12);
      background: #080706;
      padding: clamp(26px, 3.8vw, 42px) clamp(22px, 3.2vw, 38px) clamp(30px, 4.2vh, 44px);
    }

    .share-reflection-top {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
      gap: clamp(24px, 3.2vw, 40px);
      align-items: start;
    }

    .share-reflection-heading {
      margin: 0 0 clamp(12px, 1.6vh, 16px);
      font-family: var(--type-h2-font-family);
      font-size: var(--type-h2-font-size);
      font-weight: var(--type-h2-font-weight);
      line-height: var(--type-h2-line-height);
      letter-spacing: var(--type-h2-letter-spacing);
      color: #b8973a;
    }

    .share-reflection-lead {
      margin: 0;
      max-width: 40ch;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-font-size);
      line-height: var(--type-body-line-height);
      font-weight: var(--type-body-font-weight);
      color: rgba(184, 151, 58, 0.92);
    }

    .share-reflection-form {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 12px;
      align-items: stretch;
    }

    .share-reflection-input {
      flex: none;
      width: 100%;
      min-height: 48px;
      padding: 0 16px;
      border-radius: var(--radius-10);
      border: 1px solid rgba(184, 151, 58, 0.55);
      background: #040302;
      color: rgba(247, 244, 238, 0.92);
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
    }

    .share-reflection-input::placeholder {
      color: #ffffff;
      opacity: 1;
    }

    .share-reflection-input::-webkit-input-placeholder {
      color: #ffffff;
      opacity: 1;
    }

    .share-reflection-input::-moz-placeholder {
      color: #ffffff;
      opacity: 1;
    }

    .share-reflection-input:focus {
      outline: none;
      border-color: rgba(184, 151, 58, 0.85);
      box-shadow: 0 0 0 1px rgba(184, 151, 58, 0.25);
    }

    .share-reflection-divider {
      display: flex;
      align-items: center;
      gap: clamp(12px, 2vw, 22px);
      margin: clamp(28px, 3.5vh, 36px) 0 clamp(26px, 3.2vh, 34px);
    }

    .share-reflection-divider-line {
      flex: 1;
      height: var(--ui-gold-hairline-h);
      background: var(--ui-gold-hairline-soft);
    }

    .share-reflection-divider-label {
      flex-shrink: 0;
      font-family: var(--type-kicker-font-family);
      font-size: var(--type-kicker-font-size);
      font-weight: var(--type-kicker-font-weight);
      line-height: var(--type-kicker-line-height);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(184, 151, 58, 0.88);
    }

    .share-reflection-carousel {
      position: relative;
      padding: 0 clamp(36px, 4.5vw, 52px);
    }

    .share-reflection-viewport {
      overflow: hidden;
      width: 100%;
    }

    .share-reflection-track {
      display: flex;
      width: 100%;
      transition: transform var(--motion-carousel);
      will-change: transform;
    }

    .share-reflection-slide {
      flex: 0 0 100%;
      width: 100%;
      min-width: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(14px, 1.6vw, 20px);
    }

    .share-reflection-nav {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 44px;
      height: 44px;
      margin-top: -22px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(184, 151, 58, 0.5);
      border-radius: 50%;
      background: rgba(6, 5, 4, 0.92);
      color: #b8973a;
      cursor: pointer;
      transition: background var(--motion-200) var(--motion-ease), color var(--motion-200) var(--motion-ease), border-color var(--motion-200) var(--motion-ease);
    }

    .share-reflection-nav:hover {
      background: rgba(20, 16, 12, 0.95);
      color: #d4b86a;
      border-color: rgba(184, 151, 58, 0.75);
    }

    .share-reflection-nav:focus-visible {
      outline: 2px solid rgba(184, 151, 58, 0.85);
      outline-offset: 3px;
    }

    .share-reflection-nav--prev {
      left: 0;
    }

    .share-reflection-nav--next {
      right: 0;
    }

    .share-reflection-nav svg {
      width: 22px;
      height: 22px;
      display: block;
    }

    @media (prefers-reduced-motion: reduce) {
      .share-reflection-track {
        transition: none;
      }
    }

    .share-reflection-card {
      border: 1px solid rgba(184, 151, 58, 0.42);
      border-radius: var(--radius-12);
      background: rgba(10, 8, 6, 0.65);
      padding: clamp(14px, 1.6vw, 18px);
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .share-reflection-card-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .share-reflection-avatar {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #b8973a;
      color: #0e0c08;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-font-size);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .share-reflection-meta {
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: rgba(247, 244, 238, 0.88);
    }

    .share-reflection-meta strong {
      font-weight: 700;
      color: rgba(247, 244, 238, 0.95);
    }

    .share-reflection-meta span {
      color: #ffffff;
      font-weight: 400;
    }

    .share-reflection-quote {
      margin: 0 0 auto;
      padding-bottom: 14px;
      font-family: var(--type-h4-font-family);
      font-size: var(--type-h4-font-size);
      font-weight: var(--type-h4-font-weight);
      line-height: var(--type-h4-line-height);
      letter-spacing: var(--type-h4-letter-spacing);
      color: rgba(247, 244, 238, 0.9);
    }

    .share-reflection-card-foot {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      color: rgba(184, 151, 58, 0.85);
    }

    .share-reflection-card-foot svg {
      width: 16px;
      height: 16px;
      opacity: 0.9;
    }

    .share-reflection-tagline {
      margin: clamp(28px, 3.6vh, 40px) auto 0;
      max-width: 48ch;
      text-align: center;
      font-family: var(--type-h3-font-family);
      font-size: var(--type-h3-font-size);
      font-weight: var(--type-h3-font-weight);
      line-height: var(--type-h3-line-height);
      letter-spacing: var(--type-h3-letter-spacing);
      color: rgba(184, 151, 58, 0.95);
    }

    @media (max-width: 900px) {
      .share-reflection-top {
        grid-template-columns: 1fr;
      }

      .share-reflection-form {
        width: 100%;
        max-width: min(420px, 100%);
        margin-inline: auto;
        align-items: stretch;
      }

      .share-reflection-submit {
        align-self: stretch;
        width: 100%;
      }

      .share-reflection-slide {
        grid-template-columns: 1fr;
      }

      .share-reflection-carousel {
        padding: 0 clamp(28px, 8vw, 40px);
      }

      .share-reflection-nav {
        width: 40px;
        height: 40px;
        margin-top: -20px;
      }

      .share-reflection-nav svg {
        width: 18px;
        height: 18px;
      }
    }


    /* â”€â”€â”€ SECTION 11: CONTACT / SCHEDULE / DONATE â”€â”€â”€ */
    .contact-hub-section {
      background: #f8f5ee;
      color: #17130e;
      content-visibility: auto;
      contain-intrinsic-size: 900px;
    }

    .contact-hub-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.85fr) minmax(0, 0.95fr);
      gap: clamp(22px, 2.3vw, 36px);
      align-items: stretch;
    }

    .contact-hub-right {
      grid-column: 1;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      min-width: 0;
      min-height: 0;
    }

    .contact-hub-left {
      grid-column: 2;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      min-width: 0;
      min-height: 0;
      align-self: stretch;
    }

    .contact-hub-left-media {
      position: relative;
      flex: 1 1 auto;
      width: 100%;
      min-height: 0;
      border: 1px solid rgba(184, 151, 58, 0.22);
      border-radius: var(--radius-8);
      overflow: hidden;
      background: #ece4d4;
      box-shadow: var(--shadow-ambient-md);
    }

    .contact-hub-left-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    .contact-form-shell {
      border: 1px solid rgba(184, 151, 58, 0.22);
      border-radius: var(--radius-8);
      background: #fcfaf5;
      padding: 16px 16px 18px;
    }

    .contact-form-title {
      margin: 0;
      font-family: var(--type-h2-font-family);
      font-size: var(--type-h2-font-size);
      font-weight: var(--type-h2-font-weight);
      line-height: var(--type-h2-line-height);
      letter-spacing: var(--type-h2-letter-spacing);
      color: #17130e;
    }

    .contact-form-line {
      width: var(--ui-gold-hairline-w);
      height: var(--ui-gold-hairline-h);
      margin: 10px 0 12px;
      background: var(--ui-gold-hairline-bg);
    }

    .contact-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .contact-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .contact-field--full {
      grid-column: 1 / -1;
    }

    .contact-label {
      font-family: var(--type-h5-font-family);
      font-size: var(--type-h5-font-size);
      font-weight: var(--type-h5-font-weight);
      line-height: var(--type-h5-line-height);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #4c3f2d;
    }

    .contact-input,
    .contact-select,
    .contact-textarea {
      width: 100%;
      border: 1px solid rgba(184, 151, 58, 0.24);
      border-radius: var(--radius-4);
      background: #fbfaf6;
      color: #2d2418;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      padding: 10px 12px;
    }

    .contact-textarea {
      min-height: 92px;
      resize: vertical;
    }

    .contact-callout {
      margin: 12px 0 0;
      text-align: center;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: #5c4f3d;
    }

    .contact-callout-icon {
      color: #b8973a;
      margin-right: 6px;
    }

    .contact-callout-icon svg {
      width: 18px;
      height: 18px;
      display: inline-block;
      vertical-align: -3px;
    }

    .contact-callout a {
      color: inherit;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    @media (max-width: 1320px) {
      .contact-hub-inner {
        grid-template-columns: 1fr;
      }

      .contact-hub-right,
      .contact-hub-left {
        grid-column: auto;
        grid-row: auto;
      }

      .contact-hub-left {
        display: block;
      }

      .contact-hub-left-media {
        flex: none;
        min-height: 220px;
      }

      .contact-hub-left-media img {
        position: static;
        width: 100%;
        height: auto;
        min-height: 220px;
        max-height: min(520px, 60vh);
        aspect-ratio: 3 / 4;
        object-fit: cover;
      }
    }

    @media (max-width: 920px) {
      .contact-form-grid {
        grid-template-columns: 1fr;
      }
    }

    /* GLOBAL REACH — hero / share-reflection warm dark, museum gold hairlines */
    .global-reach-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 14% 22%, rgba(184, 151, 58, 0.12), transparent 40%),
        radial-gradient(circle at 88% 72%, rgba(125, 77, 26, 0.14), transparent 36%),
        linear-gradient(165deg, #0f0c08 0%, #15100c 48%, #0e0a07 100%);
      color: var(--text-main);
      border-top: 1px solid rgba(184, 151, 58, 0.14);
      content-visibility: auto;
      contain-intrinsic-size: 720px;
    }

    .global-reach-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.95fr);
      gap: clamp(22px, 2.8vw, 40px);
      align-items: stretch;
      padding-block: clamp(18px, 2.6vw, 30px);
      border: none;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .global-reach-kicker {
      margin: 0 0 12px;
      display: inline-flex;
      flex-direction: column;
      gap: 8px;
      font-family: var(--type-h5-font-family);
      font-size: var(--type-h5-font-size);
      font-weight: var(--type-h5-font-weight);
      line-height: var(--type-h5-line-height);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #b8973a;
    }

    .global-reach-kicker::after {
      content: "";
      width: var(--ui-gold-hairline-w);
      height: var(--ui-gold-hairline-h);
      background: var(--ui-gold-hairline-bg);
      border-radius: var(--radius-pill);
    }

    .global-reach-title {
      margin: 0;
      max-width: 100%;
      font-family: var(--type-h2-font-family);
      font-size: var(--type-h2-font-size);
      font-weight: var(--type-h2-font-weight);
      line-height: var(--type-h2-line-height);
      letter-spacing: var(--type-h2-letter-spacing);
      color: var(--text-main);
    }

    .global-reach-copy {
      margin: clamp(12px, 1.6vh, 18px) 0 0;
      max-width: 42ch;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-font-size);
      line-height: var(--type-body-line-height);
      font-weight: var(--type-body-font-weight);
      color: rgba(247, 244, 238, 0.76);
    }

    .global-reach-cta {
      margin-top: clamp(18px, 2.4vh, 26px);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 50px;
      padding: 0 clamp(20px, 2vw, 28px);
      border: 1px solid rgba(184, 151, 58, 0.5);
      border-radius: var(--radius-pill);
      background: rgba(4, 3, 2, 0.55);
      box-shadow: inset 0 1px 0 rgba(255, 240, 210, 0.06);
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(247, 244, 238, 0.94);
      text-decoration: none;
      transition:
        transform var(--motion-180) var(--motion-ease),
        border-color var(--motion-180) var(--motion-ease),
        background-color var(--motion-180) var(--motion-ease),
        color var(--motion-180) var(--motion-ease);
    }

    .global-reach-cta:hover {
      transform: translateY(-1px);
      border-color: rgba(184, 151, 58, 0.78);
      background: rgba(18, 14, 10, 0.78);
      color: #f7f4ee;
    }

    .global-reach-cta:focus-visible {
      outline: 2px solid rgba(184, 151, 58, 0.85);
      outline-offset: 3px;
    }

    .global-reach-map-shell {
      margin-top: clamp(26px, 3.2vw, 38px);
    }

    .global-reach-map-frame {
      position: relative;
      border: 1px solid rgba(184, 151, 58, 0.28);
      border-radius: var(--radius-16);
      overflow: hidden;
      background: #0a0907;
      box-shadow: var(--shadow-ambient-soft);
    }

    /* Stage matches map-partners.png (1672×941); width cap keeps height ≤ min(520px, 62vh) on wide viewports. */
    .global-reach-map-stage {
      position: relative;
      margin-inline: auto;
      width: min(100%, calc(min(520px, 62vh) * (1672 / 941)));
      max-width: 100%;
      aspect-ratio: 1672 / 941;
    }

    .global-reach-map-stage img {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .global-reach-node {
      position: absolute;
      z-index: 3;
      width: clamp(11px, 2.6vw, 14px);
      aspect-ratio: 1;
      border-radius: 50%;
      background: #d4b15c;
      box-shadow:
        0 0 0 3px rgba(184, 151, 58, 0.2),
        0 0 12px rgba(184, 151, 58, 0.42);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    /* Coordinates tuned to assets/images/index/map-partners.png (1672×941); center = transform on node. */
    .global-reach-node--us {
      left: 20%;
      top: 40%;
    }

    .global-reach-node--sam {
      left: 28%;
      top: 70%;
    }

    .global-reach-node--eu {
      left: 50%;
      top: 32%;
    }

    .global-reach-node--af {
      left: 52%;
      top: 68%;
    }

    .global-reach-node--as {
      left: 78%;
      top: 42%;
    }

    .global-reach-node--au {
      left: 85%;
      top: 82%;
    }

    .global-reach-node--nz {
      left: 93%;
      top: 86%;
    }

    .global-reach-companies {
      padding-top: 0;
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .global-reach-company-grid {
      flex: 1 1 auto;
      min-height: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .global-reach-company-card {
      min-height: 0;
      height: 100%;
      padding: 12px;
      border: 1px solid rgba(184, 151, 58, 0.3);
      border-radius: var(--radius-12);
      background: rgba(10, 8, 6, 0.58);
      box-shadow: inset 0 1px 0 rgba(255, 240, 210, 0.04);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 14px;
      overflow: hidden;
    }

    .global-reach-company-media {
      position: relative;
      flex: 0 0 auto;
      width: min(100%, min(120px, 28vw));
      aspect-ratio: 1 / 1;
      margin-inline: auto;
      border-radius: var(--radius-10);
      overflow: hidden;
      border: 1px solid rgba(184, 151, 58, 0.14);
      background: rgba(5, 4, 3, 0.65);
    }

    .global-reach-company-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(8, 6, 4, 0.32)),
        radial-gradient(circle at 50% 18%, rgba(184, 151, 58, 0.08), transparent 55%);
    }

    .global-reach-company-media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      filter: saturate(0.88) brightness(0.9) contrast(1.02);
      transform: scale(1.01);
    }

    .global-reach-company-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-align: center;
      flex: 1 1 auto;
    }

    .global-reach-company-body h3 {
      margin: 0;
      font-family: var(--type-h4-font-family);
      font-size: clamp(1.02rem, 0.9rem + 0.32vw, 1.28rem);
      font-weight: 600;
      line-height: var(--type-h4-line-height);
      letter-spacing: var(--type-h4-letter-spacing);
      color: var(--text-main);
    }

    .global-reach-company-body span {
      width: 36px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(184, 151, 58, 0.2), rgba(184, 151, 58, 0.85), rgba(184, 151, 58, 0.2));
    }

    /* PC: siatka partnerów w tej samej skali co mapa (stage ≤ min(520px, 62vh)). */
    @media (min-width: 1181px) {
      .global-reach-inner {
        align-items: start;
      }

      .global-reach-company-grid {
        max-height: min(520px, 62vh);
        gap: 10px;
      }

      .global-reach-company-card {
        padding: 8px 10px;
        gap: 8px;
      }

      .global-reach-company-media {
        width: min(100%, clamp(48px, 4.6vw, 80px));
      }

      .global-reach-company-body {
        gap: 6px;
        flex: 0 1 auto;
      }

      .global-reach-company-body h3 {
        font-size: clamp(0.78rem, 0.72rem + 0.12vw, 0.88rem);
      }

      .global-reach-company-body span {
        width: 28px;
      }
    }

    .global-reach-extra-cta {
      margin-top: clamp(18px, 2.4vw, 28px);
      padding-bottom: clamp(20px, 2.8vw, 32px);
    }

    .global-reach-extra-cta__inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: clamp(12px, 1.8vw, 18px);
    }

    @media (max-width: 1180px) {
      .global-reach-inner {
        grid-template-columns: 1fr;
        padding-block: clamp(16px, 3.5vw, 24px);
      }

      .global-reach-companies {
        padding-top: 0;
      }

      .global-reach-company-grid {
        min-height: 0;
      }
    }

    @media (max-width: 700px) {
      .global-reach-company-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
      }

      .global-reach-map-frame {
        border-radius: var(--radius-14);
      }

      .global-reach-company-card {
        min-height: 200px;
        height: auto;
      }
    }

    /* â”€â”€â”€ FOOTER â”€â”€â”€ */
    .site-footer {
      background: linear-gradient(180deg, #f3ecde 0%, #ede3d2 100%);
      color: #17130e;
      padding: clamp(26px, 3.2vh, 40px) 0 clamp(16px, 2vh, 24px);
      border-top: 1px solid rgba(184, 151, 58, 0.18);
      content-visibility: auto;
      contain-intrinsic-size: 700px;
    }

    .site-footer-inner {
      max-width: var(--site-content-max);
      margin: 0 auto;
      padding-left: var(--site-content-pad-x);
      padding-right: var(--site-content-pad-x);
    }

    .site-footer-main {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
      column-gap: clamp(20px, 2.4vw, 36px);
      align-items: start;
    }

    .site-footer-divider {
      width: 1px;
      background: var(--ui-gold-hairline-vertical);
      align-self: stretch;
    }

    .site-footer-social {
      display: flex;
      align-items: center;
      gap: clamp(10px, 1.1vw, 16px);
      margin-bottom: clamp(14px, 1.6vh, 20px);
    }

    .site-footer-brand {
      margin-bottom: clamp(18px, 2vh, 26px);
      padding-bottom: clamp(14px, 1.6vh, 20px);
      border-bottom: 1px solid rgba(184, 151, 58, 0.22);
    }

    .site-footer-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 8px 14px;
      margin-bottom: 10px;
      border-radius: var(--radius-8);
      border: 1px dashed rgba(184, 151, 58, 0.45);
      background: rgba(255, 255, 255, 0.55);
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      font-weight: 600;
      line-height: var(--type-body-sm-line-height);
      letter-spacing: 0.02em;
      color: #17130e;
    }

    .site-footer-brand-desc {
      margin: 0;
      max-width: 42ch;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: #3a3228;
    }

    .site-footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 4px 2px;
      border: none;
      border-radius: 0;
      background: none;
      color: #b8973a;
      text-decoration: none;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-font-size);
      line-height: 1;
    }

    .site-footer-social a:hover {
      color: #9f8335;
    }

    .site-footer-contact {
      margin: 0;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: #19140f;
    }

    .site-footer-contact-group {
      margin: 0 0 clamp(14px, 1.6vh, 18px);
    }

    .site-footer-contact-group:last-child {
      margin-bottom: 0;
    }

    .site-footer-contact-heading {
      margin: 0 0 6px;
      font-family: var(--type-h5-font-family);
      font-size: var(--type-caption-font-size);
      font-weight: var(--type-h5-font-weight);
      line-height: var(--type-caption-line-height);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #9f8335;
    }

    .site-footer-contact-group p {
      margin: 0;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: #19140f;
    }

    .site-footer-right {
      display: flex;
      justify-content: flex-end;
    }

    .site-footer-news {
      width: 100%;
      max-width: 520px;
    }

    .site-footer-news-title {
      margin: 0;
      font-family: var(--type-h2-font-family);
      font-size: var(--type-h2-font-size);
      font-weight: var(--type-h2-font-weight);
      line-height: var(--type-h2-line-height);
      letter-spacing: var(--type-h2-letter-spacing);
      color: #17130e;
      max-width: none;
      width: 100%;
    }

    .site-footer-form {
      max-width: 520px;
      width: 100%;
      margin-top: clamp(18px, 2.2vh, 28px);
    }

    .site-footer-extra-contacts {
      margin-top: clamp(24px, 3vh, 34px);
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px 20px;
    }

    .site-footer-extra-contact {
      min-width: 0;
    }

    .site-footer-extra-heading {
      margin: 0 0 6px;
      font-family: var(--type-h5-font-family);
      font-size: var(--type-caption-font-size);
      font-weight: var(--type-h5-font-weight);
      line-height: var(--type-caption-line-height);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #9f8335;
    }

    .site-footer-extra-contact p {
      margin: 0;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: #19140f;
      word-break: break-word;
    }

    .site-footer-extra-contact a {
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid rgba(184, 151, 58, 0.35);
    }

    .site-footer-extra-contact a:hover {
      color: #9f8335;
      border-bottom-color: rgba(184, 151, 58, 0.55);
    }

    .site-footer-input {
      width: 100%;
      height: 44px;
      border: 1px solid rgba(184, 151, 58, 0.35);
      border-radius: var(--radius-8);
      background: #fbfaf6;
      color: #2d2418;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-font-size);
      line-height: var(--type-body-line-height);
      padding: 0 14px;
    }

    .site-footer-input::placeholder {
      color: #9a9285;
    }

    .site-footer-bottom {
      margin-top: clamp(16px, 2vh, 22px);
      border-top: 1px solid rgba(184, 151, 58, 0.45);
      position: relative;
      padding: 16px 0 2px;
      text-align: center;
    }

    .site-footer-copyright {
      margin: 4px 0 0;
      font-family: var(--type-body-font-family);
      font-size: var(--type-body-sm-font-size);
      line-height: var(--type-body-sm-line-height);
      font-weight: var(--type-body-font-weight);
      color: #19140f;
    }

    .site-footer-contact a {
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid rgba(184, 151, 58, 0.35);
    }

    .site-footer-contact a:hover {
      color: #9f8335;
      border-bottom-color: rgba(184, 151, 58, 0.55);
    }

    @media (max-width: 920px) {
      .site-footer-main {
        grid-template-columns: 1fr;
        row-gap: 20px;
      }

      .site-footer-divider {
        display: none;
      }

      .site-footer-right {
        justify-content: flex-start;
      }

      .site-footer-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
      }

      .site-footer-extra-contacts {
        grid-template-columns: 1fr;
      }

      .site-footer-input {
        align-self: stretch;
      }

      .site-footer-submit {
        margin-left: auto;
        margin-right: auto;
      }
    }

    ::selection {
      background: rgba(184, 151, 58, 0.25);
      color: var(--text-main);
    }

