:root {
        --bg: #052b15;
        --gold: #e9b34f;
        --ink: #ffffff;

        /* Gutter color used by full-bleed sections */
        --gutter: #afcdba;

        --maxw: 1440px;
        --module-h: 505px;

        /* Type */
        --stack: clamp(3.25rem, 5.6vw, 6rem);
        --copy: clamp(1rem, 0.95vw, 1.25rem);

        /* Hero layout */
        --hero-min: clamp(640px, 100vh, 900px);
        --safe: clamp(18px, 4vw, 80px);
        --content-w: min(520px, 92vw);
        --stripe-h: clamp(20px, 3.2vw, 38px);
        --pattern-h: clamp(44px, 5.2vw, 70px);

        /* Pattern sizing (used in responsive) */
        --pattern-size-mobile: clamp(220px, 40vw, 520px);

        /* Nav */
        --nav-h: 74px;
        --nav-bg: rgba(5, 43, 21, 0.62);
        --nav-border: rgba(255, 255, 255, 0.14);

        /* HERO positioning — derived from 1728px Figma artboard */
        --hero-left-1728: 307.99px;
      }

      * {
        box-sizing: border-box;
      }

      html,
      body {
        height: 100%;
      }

      body {
        margin: 0;
        color: var(--ink);
        background: var(--gutter);
        font-family: var(--font-body);
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: var(--font-heading);
      }

      /* Utility: pad the page so fixed nav doesn't cover content */
      .page {
        padding-top: var(--nav-h);
      }
      
     /* =========================================================
         HERO (Figma-faithful @ 1728px)
      ========================================================= */
      .hero {
        position: relative;
        width: 100%;
        min-height: var(--hero-min);
        display: grid;
        align-items: center;
        overflow: hidden;
        background: url("../imgs/orishi_mainhero_image.jpg") center / cover no-repeat;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
      }

      .hero__content {
        position: relative;
        z-index: 2;
        padding: var(--safe);
        width: var(--content-w);
        margin-left: calc(var(--hero-left-1728) * (100vw / 1728));
      }

      @media (min-width: 1728px) {
        .hero__content {
          margin-left: var(--hero-left-1728);
        }
      }

      .hero__brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
      }

      .hero__logo {
        width: 227px;
        height: auto;
        display: block;
      }

      .hero__eyebrow {
        color: var(--gold);
        font-size: 32px;
        font-weight: 700;
        line-height: 32px;
      }

      .hero__stack {
        margin: 0 0 14px;
        font-size: var(--stack);
        font-weight: 700;
        line-height: 0.95;
        letter-spacing: -0.01em;
        text-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
      }

      .hero__rule {
        width: min(500px, 100%);
        height: 2px;
        background: rgba(255, 255, 255, 0.85);
        margin: 10px 0 16px;
        opacity: 0.9;
      }

      .hero__copy {
        margin: 0;
        max-width: 52ch;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);

        font-family: Arial, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.35;
        word-wrap: break-word;
      }

      .hero__copy + .hero__copy {
        margin-top: 14px;
      }

      .hero__bottom {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero__bottom-inner {
        width: 100%;
        max-width: var(--maxw);
      }

      .hero__stripe {
        height: clamp(16px, 3vw, 43px);
        background: var(--gold);
        width: 100%;
      }

      .hero__pattern {
        height: clamp(16px, 3vw, 43px);
        width: 100%;
        background: url("../imgs/africanpattern_green.png") left top / auto repeat;
        border-top: 1px solid rgba(0, 0, 0, 0.18);
      }

      @media (max-width: 720px) {
        .hero__content {
          margin-left: clamp(18px, 6vw, 40px);
          width: min(560px, 94vw);
        }
      }


      /* =========================================================
         ABOUT (gutter-safe)
      ========================================================= */
      .about {
        width: 100%;
        background: var(--gutter);
      }

      .about__inner {
        max-width: var(--maxw);
        margin: 0 auto;
        min-height: var(--module-h);
        position: relative;
        overflow: hidden;

        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        column-gap: clamp(24px, 4vw, 80px);
        row-gap: clamp(18px, 3vw, 36px);

        padding: clamp(40px, 5vw, 88px) clamp(18px, 4vw, 80px);
        background: url("../imgs/aboutus_bg.jpg") center / cover no-repeat;
        color: rgba(255, 255, 255, 0.92);
      }

      .about__inner::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
          radial-gradient(
            80% 120% at 50% 50%,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.48) 70%,
            rgba(0, 0, 0, 0.64) 100%
          ),
          linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.22) 50%,
            rgba(0, 0, 0, 0.55) 100%
          );
      }

      .about__col {
        position: relative;
        z-index: 1;
        min-width: 0;
      }

      .about__title {
        margin: 0 0 18px;
        font-size: clamp(32px, 3.2vw, 44px);
        line-height: 1.1;
        font-weight: 700;
        letter-spacing: 0.01em;
        color: rgba(255, 255, 255, 0.96);
      }

      .about__kicker {
        margin: 0 0 18px;
        font-size: clamp(18px, 1.6vw, 22px);
        line-height: 1.2;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.96);
      }

      .about__body p {
        margin: 0 0 16px;
        font-size: 16px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.9);
        font-family: var(--font-body);
        font-weight: 400;
      }

      .about__body p:last-child {
        margin-bottom: 0;
      }

      .about__col--center {
        display: grid;
        place-items: center;
      }

      .about__symbol {
        width: clamp(120px, 14vw, 190px);
        height: auto;
        display: block;
        filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.45));
      }

      @media (max-width: 980px) {
        .about__inner {
          grid-template-columns: 1fr;
          text-align: left;
        }

        .about__col--center {
          order: 2;
          margin: 8px 0;
        }

        .about__col--right {
          order: 3;
        }
      }

      /* =========================================================
         CORE VALUES
      ========================================================= */
      .corevalues {
        width: 100%;
        background: var(--gutter);
      }

      .corevalues__inner {
        max-width: var(--maxw);
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        min-height: var(--module-h);
        padding: clamp(28px, 4.5vw, 72px) clamp(18px, 4vw, 80px);
        background: #1f5b3a;
        color: rgba(255, 255, 255, 0.92);
      }

      .corevalues__pattern {
        position: absolute;
        pointer-events: none;
        background-repeat: no-repeat;
        opacity: 0.95;
      }

      .corevalues__pattern--left {
        left: -40px;
        bottom: -46px;
        width: min(261px, 44vw);
        height: min(148px, 44vw);
        background-image: url("../imgs/africanpattern_left.png");
        background-size: contain;
        background-position: left bottom;
      }

      .corevalues__pattern--right {
        right: -44px;
        top: -40px;
        width: min(261px, 36vw);
        height: min(420px, 36vw);
        background-image: url("../imgs/africanpattern_right.png");
        background-size: contain;
        background-position: right top;
      }

      .corevalues__grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1.05fr 0.9fr 1.15fr;
        align-items: start;
        gap: clamp(22px, 3vw, 56px);
      }

      .corevalues__subhead {
        margin: 0 0 12px;
        font-size: clamp(1.1rem, 1.1vw, 1.35rem);
        font-weight: 700;
        color: rgba(255, 255, 255, 0.95);
      }

      .corevalues__subhead--spaced {
        margin-top: clamp(18px, 3vw, 34px);
      }

      .corevalues__copy {
        margin: 0;
        max-width: 48ch;
        font-family: var(--font-body);
        font-size: 16px;
        font-weight: 400;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.9);
      }

      .corevalues__col--center {
        display: grid;
        place-items: center;
      }

      .corevalues__center {
        display: grid;
        justify-items: center;
        text-align: center;
        gap: 10px;
      }

      .corevalues__eyebrow {
        margin: 0;
        font-size: 14px;
        font-weight: 700;
        opacity: 0.95;
      }

      .corevalues__title {
        margin: 0 0 6px;
        font-size: clamp(2.4rem, 3.6vw, 4.2rem);
        font-weight: 700;
        line-height: 1;
        color: rgba(255, 255, 255, 0.98);
      }

      .corevalues__icon {
        width: 174px;
        height: 220px;
        display: block;
        object-fit: contain;
        filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.35));
      }

      .corevalues__pillars-title {
        margin: 0 0 14px;
        font-size: clamp(1.2rem, 1.35vw, 1.75rem);
        font-weight: 700;
        color: rgba(255, 255, 255, 0.96);
      }

      .corevalues__list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 14px;
        max-width: 52ch;
      }

      .corevalues__item {
        margin: 0;
        font-family: var(--font-body);
        font-size: 16px;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.92);
      }

      .corevalues__item strong {
        font-weight: 700;
        color: #fff;
      }

      @media (max-width: 980px) {
        .corevalues__grid {
          grid-template-columns: 1fr;
          gap: 26px;
        }
        .corevalues__col--mv {
          order: 1;
        }
        .corevalues__col--center {
          order: 2;
        }
        .corevalues__col--pillars {
          order: 3;
        }
      }

      /* =========================================================
         WHAT WE CREATE
      ========================================================= */
      .whatwecreate {
        width: 100%;
        background: var(--gutter);
      }

      .whatwecreate__inner {
        max-width: var(--maxw);
        height: var(--module-h);
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        background: url("../imgs/whatwecreate_backgroundimg.jpg") center / cover no-repeat;
      }

      .whatwecreate__inner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(5, 43, 21, 0.65) 0%,
          rgba(5, 43, 21, 0.35) 45%,
          rgba(5, 43, 21, 0.1) 100%
        );
        pointer-events: none;
      }

      .whatwecreate__grid {
        position: relative;
        z-index: 1;
        height: 100%;
        display: grid;
        grid-template-columns: 280px 1fr 240px;
        align-items: center;
        gap: clamp(18px, 3vw, 40px);
        padding: clamp(22px, 5vw, 72px);
      }

      .whatwecreate__iconcol {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .whatwecreate__icon {
        width: clamp(344px, 22vw, 420px);
        height: auto;
        display: block;
      }

      .whatwecreate__title {
        margin: 0 0 14px;
        font-size: clamp(32px, 3.2vw, 44px);
        font-weight: 700;
        line-height: 1;
        color: #fff;
        text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
      }

      .whatwecreate__copy {
        margin: 0;
        max-width: 62ch;
        color: rgba(255, 255, 255, 0.92);
        font-family: var(--font-body);
        font-size: 24px;
        font-weight: 100;
        line-height: 1.35;
        word-wrap: break-word;
      }

      @media (max-width: 980px) {
        .whatwecreate__inner {
          height: auto;
          min-height: 420px;
        }

        .whatwecreate__grid {
          grid-template-columns: 1fr;
          padding: clamp(22px, 6vw, 56px);
        }

        .whatwecreate__iconcol {
          justify-content: flex-start;
        }
      }

      /* =========================================================
         CAPABILITIES
      ========================================================= */
      .capabilities {
        width: 100%;
        background: var(--gutter);
      }

      .capabilities__inner {
        max-width: var(--maxw);
        height: var(--module-h);
        margin: 0 auto;
        background: #2f4f41;
        display: grid;
        align-items: center;
        padding: clamp(24px, 4vw, 70px);
      }

      .capabilities__grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: clamp(18px, 2.8vw, 48px);
        align-items: start;
      }

      .capability {
        display: grid;
        grid-template-rows: auto auto auto;
        row-gap: 16px;
        text-align: center;
        justify-items: center;
      }

      .capability__icon {
        width: 40px;
        height: auto;
        display: block;
      }

      .capability__title {
        margin: 0;
        font-size: clamp(1.05rem, 1.3vw, 1.5rem);
        font-weight: 700;
        line-height: 1.15;
        color: #fff;
      }

      .capability__desc {
        margin: 0;
        max-width: 26ch;
        color: rgba(255, 255, 255, 0.92);
        font-family: var(--font-body);
        font-size: 16px;
        font-weight: 400;
        line-height: 1.35;
      }

      @media (max-width: 1100px) {
        .capabilities__inner {
          height: auto;
          min-height: var(--module-h);
        }

        .capabilities__grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 640px) {
        .capabilities__grid {
          grid-template-columns: 1fr;
        }
        .capability__desc {
          max-width: 52ch;
        }
      }

      /* =========================================================
         WHAT'S NEXT (SAB)
      ========================================================= */
      .sab {
        width: 100%;
        background: var(--gutter);
      }

      .sab__inner {
        max-width: var(--maxw);
        margin: 0 auto;
        position: relative;
        overflow: hidden;
      }

      .sab__bg-video {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
      }

      .sab__bg-video-el {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
      }

      .sab__inner::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 1;
        background:
          radial-gradient(900px 650px at 20% 32%, rgba(0, 0, 0, 0.78), transparent 62%),
          linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.38) 42%,
            rgba(0, 0, 0, 0.12) 100%
          );
      }

      .sab__top,
      .sab__founders {
        position: relative;
        z-index: 2;
      }

      .sab__top {
        display: grid;
        grid-template-columns: 1fr 1.25fr;
        gap: clamp(18px, 3vw, 56px);
        align-items: center;
        padding: clamp(28px, 4.5vw, 86px);
        min-height: 520px;
      }

      .sab__eyebrow {
        margin: 0 0 10px;
        font-family: var(--font-heading);
        font-size: 14px;
        font-weight: 700;
        opacity: 0.92;
      }

      .sab__headline {
        margin: 0 0 18px;
        font-family: var(--font-heading);
        font-size: clamp(2.8rem, 4.6vw, 5.2rem);
        font-weight: 700;
        line-height: 0.98;
        letter-spacing: -0.01em;
        color: rgba(255, 255, 255, 0.98);
        text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
      }

      .sab__blurb {
        margin: 0;
        max-width: 46ch;
        font-family: var(--font-body);
        font-size: 16px;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.92);
        text-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
      }

      .sab__founders {
        padding: 0 clamp(28px, 4.5vw, 86px) clamp(28px, 4.5vw, 86px);
      }

      .sab__founders-inner {
        background: #2f4f41;
        padding: clamp(26px, 4vw, 54px) clamp(22px, 4vw, 80px);
      }

      .sab__founders-title {
        margin: 0 0 18px;
        font-family: var(--font-body);
        font-size: clamp(2rem, 3vw, 3rem);
        font-weight: 700;
        color: rgba(255, 255, 255, 0.98);
      }

      .sab__founders-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(18px, 3vw, 54px);
        align-items: start;
      }

      .sab__founders-copy {
        margin: 0;
        font-family: var(--font-body);
        font-size: 16px;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.92);
        max-width: 60ch;
      }

      .sab__founders-right {
        display: grid;
        gap: 18px;
      }

      .sab__sig {
        margin: 0;
        font-family: var(--font-heading);
        font-size: 18px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.92);
      }

      @media (max-width: 980px) {
        .sab__top {
          grid-template-columns: 1fr;
          min-height: unset;
          padding: clamp(26px, 6vw, 56px);
        }

        .sab__founders-inner {
          padding: clamp(24px, 6vw, 44px);
        }

        .sab__founders-grid {
          grid-template-columns: 1fr;
        }
      }
/* =========================================================
   BUTTONS (shared: works for <a> and <button>)
========================================================= */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #0a552a;
  --btn-h: 56px;
  --btn-w: 148px;
  --btn-radius: 30px;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: var(--btn-w);
  height: var(--btn-h);

  background: var(--btn-bg);
  color: var(--btn-fg);

  border: none;
  border-radius: var(--btn-radius);

  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;

  cursor: pointer;
  text-decoration: none; /* IMPORTANT for <a> */
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(233, 179, 79, 0.65);
  outline-offset: 3px;
}

/* Loading state (works for button + link, but you’ll only “load” on submit) */
.btn.is-loading {
  opacity: 0.95;
  cursor: wait;
}

.btn .btn__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10, 85, 42, 0.35);
  border-top-color: rgba(10, 85, 42, 1);
  border-radius: 999px;
  animation: spin 900ms linear infinite;
}

.btn.is-loading .btn__spinner {
  display: inline-block;
}

/* Optional: slightly wider button for “Enter” if you want */
.btn--wide {
  --btn-w: 180px;
}
      /* =========================================================
         NEWSLETTER (Formspree)
      ========================================================= */
      .newsletter {
        width: 100%;
        background: #000;
      }

      .newsletter__inner {
        max-width: var(--maxw);
        margin: 0 auto;
        min-height: 500px;
        background: url("../imgs/africanblack_pattern.png") center / auto repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: clamp(36px, 5vw, 90px);
        text-align: center;
      }

      .newsletter__form-wrap {
        width: min(720px, 100%);
        transition: opacity 420ms ease, transform 420ms ease;
      }

      .newsletter__form-wrap.is-leaving {
        opacity: 0;
        transform: translateY(6px);
        pointer-events: none;
      }

      .newsletter__lead {
        margin: 0 0 28px;
        color: #fff;
        font-family: var(--font-body);
        font-size: clamp(1.2rem, 1.4vw, 1.6rem);
        line-height: 1.4;
      }

      .newsletter__form {
        display: flex;
        gap: 18px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .newsletter__input {
        flex: 1;
        min-width: 260px;
        max-width: 520px;
        height: 58px;
        border-radius: 28px;
        border: none;
        padding: 0 24px;
        font-size: 1rem;
        outline: none;
      }

/* Newsletter button now uses shared .btn */
.newsletter__btn {
  /* Keep this class for targeting in JS if you want, but styling comes from .btn */
}
      .newsletter__status {
        margin: 12px 0 0;
        font-family: Arial, sans-serif;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
        min-height: 18px;
      }

      .newsletter__thankyou {
        display: none;
        max-width: 620px;
        color: #fff;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 520ms ease, transform 520ms ease;
      }

      .newsletter__thankyou.is-entering {
        display: block;
      }

      .newsletter__thankyou.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      .newsletter__thankyou h2 {
        font-size: clamp(2rem, 3vw, 3rem);
        margin: 0 0 16px;
      }

      .newsletter__thankyou p {
        margin: 0;
        font-size: clamp(1.1rem, 1.4vw, 1.3rem);
        opacity: 0.95;
      }

      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      /* =========================================================
         FOOTER
      ========================================================= */
      .site-footer {
        width: 100%;
        background: #000;
        color: #fff;
      }

      .site-footer__inner {
        max-width: var(--maxw);
        margin: 0 auto;
        padding: 60px clamp(18px, 4vw, 80px);
        display: grid;
        grid-template-columns: 1.2fr 0.7fr 1fr;
        gap: clamp(18px, 3vw, 64px);
        align-items: start;
      }

      .site-footer__logo {
        width: 78px;
        height: auto;
        display: block;
      }

      .site-footer__brandname {
        margin: 14px 0 10px;
        font-size: 1.35rem;
        font-weight: 700;
      }

      .site-footer__tagline {
        margin: 0;
        opacity: 0.9;
        line-height: 1.2;
      }

      .site-footer__heading {
        margin: 0 0 16px;
        font-size: 1.35rem;
        font-weight: 700;
      }

      .site-footer__nav {
        display: grid;
        gap: 6px;
      }

      .site-footer__link {
        color: rgba(255, 255, 255, 0.92);
        text-decoration: none;
      }

      .site-footer__link:hover {
        text-decoration: underline;
      }

      .site-footer__icons {
        display: flex;
        gap: 14px;
        align-items: center;
      }

      .social {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        display: inline-grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
      }

      .social img {
        width: 18px;
        height: 18px;
        display: block;
      }

      .site-footer__legal {
        display: flex;
        gap: 10px;
        align-items: center;
        opacity: 0.9;
        margin-top: 22px;
      }

      .site-footer__legal-link {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
      }

      .site-footer__legal-link:hover {
        text-decoration: underline;
      }

      .site-footer__divider {
        opacity: 0.7;
      }

      .site-footer__bar {
        height: 70px;
        background: #1f4b33;
        display: flex;
        align-items: center;
        padding: 0 clamp(18px, 4vw, 80px);
        font-size: 1rem;
        color: #fff;
      }

      @media (max-width: 980px) {
        .site-footer__inner {
          grid-template-columns: 1fr;
          gap: 22px;
        }
      }
